Skip to content

Commit

Permalink
changed filetype to csv
Browse files Browse the repository at this point in the history
  • Loading branch information
anujanegi committed Nov 3, 2023
1 parent 0ef6f6a commit 0cd5988
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions plot FIG2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -13,7 +13,7 @@
"from sklearn.gaussian_process import GaussianProcessRegressor\n",
"from sklearn.gaussian_process.kernels import RBF, WhiteKernel\n",
"from sklearn.gaussian_process.kernels import RBF, ConstantKernel\n",
"\n",
"import pandas as pd\n",
"from sklearn.preprocessing import StandardScaler"
]
},
Expand All @@ -23,9 +23,11 @@
"metadata": {},
"outputs": [],
"source": [
"# load pickle from ./data/final\n",
"fixed = np.load('./bsi_zoo/data/final/fixed.pkl', allow_pickle=True)\n",
"fixed_spatialCV = np.load('./bsi_zoo/data/final/fixed_spatialCV.pkl', allow_pickle=True)"
"# # load pickle from ./data/final\n",
"# fixed = np.load('./bsi_zoo/data/final/fixed.pkl', allow_pickle=True)\n",
"# fixed_spatialCV = np.load('./bsi_zoo/data/final/fixed_spatialCV.pkl', allow_pickle=True)\n",
"fixed = pd.read_csv('./bsi_zoo/data/final/fixed.csv')\n",
"fixed_spatialCV = pd.read_csv('./bsi_zoo/data/final/fixed_spatialCV.csv')"
]
},
{
Expand Down

0 comments on commit 0cd5988

Please sign in to comment.