85617 lines
6.8 MiB
Plaintext
85617 lines
6.8 MiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 1,
|
|
"id": "276487d8",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"%load_ext autoreload\n",
|
|
"%autoreload 2\n",
|
|
"import torch\n",
|
|
"from aiRNN import dataloader, models, losses\n",
|
|
"import pathlib"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 2,
|
|
"id": "1308b1d5",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"file_list = pathlib.Path(\"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/cpp/known_routes_and_aircraft.csv\")\n",
|
|
"base_path = file_list.parent\n",
|
|
"file_list = file_list.read_text().splitlines()\n",
|
|
"file_list = [(base_path / f).resolve() for f in file_list]"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 3,
|
|
"id": "0d8e6107",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stderr",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:80: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"dt\"] = df[\"timestamp\"].diff()\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:98: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lat\"] = last_row[\"lat\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:99: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_lon\"] = last_row[\"lon\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:100: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_alt\"] = last_row[\"alt\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:101: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_ias\"] = last_row[\"ias\"]\n",
|
|
"/home/lars/Documents/Studium/UiO/data_analysis/project3/Code/python/src/aiRNN/dataloader.py:102: SettingWithCopyWarning: \n",
|
|
"A value is trying to be set on a copy of a slice from a DataFrame.\n",
|
|
"Try using .loc[row_indexer,col_indexer] = value instead\n",
|
|
"\n",
|
|
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
|
|
" df.loc[:, \"last_timestamp\"] = last_row[\"timestamp\"]\n"
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"dataset = dataloader.EvenlySpacedDataset(\n",
|
|
" filepaths=file_list[:500],\n",
|
|
" n_input=30*10, # 10 minutes input\n",
|
|
" n_output=30*1, # 1 minutes output\n",
|
|
" n_windows_per_file=5,\n",
|
|
" step=1,\n",
|
|
" feature_columns=(\"lat\", \"lon\", \"alt\", \"ias\"),\n",
|
|
" context_columns=(\"last_lat\", \"last_lon\", \"last_alt\", \"last_ias\"),\n",
|
|
" time_columns=(\"timestamp\", \"dt\"),\n",
|
|
" target_columns=(\"lat\", \"lon\", \"alt\"),\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 4,
|
|
"id": "595103c9",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"data": {
|
|
"text/plain": [
|
|
"2365"
|
|
]
|
|
},
|
|
"execution_count": 4,
|
|
"metadata": {},
|
|
"output_type": "execute_result"
|
|
}
|
|
],
|
|
"source": [
|
|
"len(dataset)"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": 7,
|
|
"id": "522cd04f",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": [
|
|
"test_model = models.ThreeInputRNN(\n",
|
|
" time_in=2,\n",
|
|
" feat_in=4,\n",
|
|
" context_in=4,\n",
|
|
" hidden_size=128,\n",
|
|
" rnn_size=256,\n",
|
|
" out_size=3,\n",
|
|
")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "4e089307",
|
|
"metadata": {},
|
|
"outputs": [
|
|
{
|
|
"name": "stdout",
|
|
"output_type": "stream",
|
|
"text": [
|
|
"Loss: 0.1666\n",
|
|
"Loss: 0.0905\n",
|
|
"Loss: 0.1575\n",
|
|
"Loss: 0.2210\n",
|
|
"Loss: 0.1710\n",
|
|
"Loss: 0.2356\n"
|
|
]
|
|
},
|
|
{
|
|
"ename": "KeyboardInterrupt",
|
|
"evalue": "",
|
|
"output_type": "error",
|
|
"traceback": [
|
|
"\u001b[31m---------------------------------------------------------------------------\u001b[39m",
|
|
"\u001b[31mKeyboardInterrupt\u001b[39m Traceback (most recent call last)",
|
|
"\u001b[36mCell\u001b[39m\u001b[36m \u001b[39m\u001b[32mIn[9]\u001b[39m\u001b[32m, line 7\u001b[39m\n\u001b[32m 5\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m X_f, X_t, y, X_c \u001b[38;5;129;01min\u001b[39;00m torch.utils.data.DataLoader(dataset, batch_size=\u001b[32m256\u001b[39m, shuffle=\u001b[38;5;28;01mTrue\u001b[39;00m):\n\u001b[32m 6\u001b[39m optimizer.zero_grad()\n\u001b[32m----> \u001b[39m\u001b[32m7\u001b[39m y_pred, _ = \u001b[43mtest_model\u001b[49m\u001b[43m(\u001b[49m\u001b[43mX_t\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mX_f\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mX_c\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[32;43m300\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[32;43m30\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[32m 8\u001b[39m loss = criterion(y_pred, y)\n\u001b[32m 9\u001b[39m loss.backward()\n",
|
|
"\u001b[36mFile \u001b[39m\u001b[32m~/Documents/Studium/UiO/data_analysis/project3/Code/python/.venv/lib64/python3.13/site-packages/torch/nn/modules/module.py:1775\u001b[39m, in \u001b[36mModule._wrapped_call_impl\u001b[39m\u001b[34m(self, *args, **kwargs)\u001b[39m\n\u001b[32m 1773\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m._compiled_call_impl(*args, **kwargs) \u001b[38;5;66;03m# type: ignore[misc]\u001b[39;00m\n\u001b[32m 1774\u001b[39m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[32m-> \u001b[39m\u001b[32m1775\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[43m.\u001b[49m\u001b[43m_call_impl\u001b[49m\u001b[43m(\u001b[49m\u001b[43m*\u001b[49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n",
|
|
"\u001b[36mFile \u001b[39m\u001b[32m~/Documents/Studium/UiO/data_analysis/project3/Code/python/.venv/lib64/python3.13/site-packages/torch/nn/modules/module.py:1786\u001b[39m, in \u001b[36mModule._call_impl\u001b[39m\u001b[34m(self, *args, **kwargs)\u001b[39m\n\u001b[32m 1781\u001b[39m \u001b[38;5;66;03m# If we don't have any hooks, we want to skip the rest of the logic in\u001b[39;00m\n\u001b[32m 1782\u001b[39m \u001b[38;5;66;03m# this function, and just call forward.\u001b[39;00m\n\u001b[32m 1783\u001b[39m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m (\u001b[38;5;28mself\u001b[39m._backward_hooks \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m._backward_pre_hooks \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m._forward_hooks \u001b[38;5;129;01mor\u001b[39;00m \u001b[38;5;28mself\u001b[39m._forward_pre_hooks\n\u001b[32m 1784\u001b[39m \u001b[38;5;129;01mor\u001b[39;00m _global_backward_pre_hooks \u001b[38;5;129;01mor\u001b[39;00m _global_backward_hooks\n\u001b[32m 1785\u001b[39m \u001b[38;5;129;01mor\u001b[39;00m _global_forward_hooks \u001b[38;5;129;01mor\u001b[39;00m _global_forward_pre_hooks):\n\u001b[32m-> \u001b[39m\u001b[32m1786\u001b[39m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mforward_call\u001b[49m\u001b[43m(\u001b[49m\u001b[43m*\u001b[49m\u001b[43margs\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m*\u001b[49m\u001b[43m*\u001b[49m\u001b[43mkwargs\u001b[49m\u001b[43m)\u001b[49m\n\u001b[32m 1788\u001b[39m result = \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[32m 1789\u001b[39m called_always_called_hooks = \u001b[38;5;28mset\u001b[39m()\n",
|
|
"\u001b[31mKeyboardInterrupt\u001b[39m: "
|
|
]
|
|
}
|
|
],
|
|
"source": [
|
|
"# Example training\n",
|
|
"optimizer = torch.optim.Adam(test_model.parameters(), lr=1e-2)\n",
|
|
"scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(optimizer, patience=5, factor=0.5)\n",
|
|
"criterion = torch.nn.HuberLoss()\n",
|
|
"for epoch in range(50):\n",
|
|
" losses = []\n",
|
|
" for X_f, X_t, y, X_c in torch.utils.data.DataLoader(dataset, batch_size=256, shuffle=True):\n",
|
|
" optimizer.zero_grad()\n",
|
|
" y_pred, _ = test_model(X_t, X_f, X_c, 300, 30)\n",
|
|
" loss = criterion(y_pred, y)\n",
|
|
" loss.backward()\n",
|
|
" optimizer.step()\n",
|
|
" losses.append(loss.item())\n",
|
|
" loss = sum(losses) / len(losses)\n",
|
|
" scheduler.step(loss)\n",
|
|
" print(f\"Epoch {epoch}: loss={loss}, lr={optimizer.param_groups[0]['lr']}\")"
|
|
]
|
|
},
|
|
{
|
|
"cell_type": "code",
|
|
"execution_count": null,
|
|
"id": "a7f994ed",
|
|
"metadata": {},
|
|
"outputs": [],
|
|
"source": []
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "adsbpy",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 3
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython3",
|
|
"version": "3.13.9"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|