# HG changeset patch
# User jay
# Date 1752176459 0
# Node ID 2ae74925a4fe1477eb2fad7840d9f1d8c50fe24c
# Parent  c69125e9fb3ddc695a0f4ab441b8781d430c13e0
planemo upload for repository https://github.com/jaidevjoshi83/gaiac commit e9587f93346c7b55e1be00bad5844bf2db3ed03d-dirty
diff -r c69125e9fb3d -r 2ae74925a4fe gaiac_pm_data_pulling/.ipynb_checkpoints/Untitled-checkpoint.ipynb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gaiac_pm_data_pulling/.ipynb_checkpoints/Untitled-checkpoint.ipynb	Thu Jul 10 19:40:59 2025 +0000
@@ -0,0 +1,6 @@
+{
+ "cells": [],
+ "metadata": {},
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff -r c69125e9fb3d -r 2ae74925a4fe gaiac_pm_data_pulling/Untitled.ipynb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gaiac_pm_data_pulling/Untitled.ipynb	Thu Jul 10 19:40:59 2025 +0000
@@ -0,0 +1,136 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "id": "4707b84c-b2f9-4740-bd62-a159e2c7e123",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import pandas as pd"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "id": "c9870ed9-90cc-427b-b811-bd94c6b867c9",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "a = [1,2,4,6]\n",
+    "b = [4,5,6,7]\n",
+    "\n",
+    "df = pd.DataFrame([a,b])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "id": "502e66d5-022d-47af-a299-a918f0ebd887",
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/html": [
+       "
\n",
+       "\n",
+       "
\n",
+       "  \n",
+       "    \n",
+       "      | \n",
+       " | 0\n",
+       " | 1\n",
+       " | 
\n",
+       "  \n",
+       "  \n",
+       "    \n",
+       "      | 0\n",
+       " | 1\n",
+       " | 4\n",
+       " | 
\n",
+       "    \n",
+       "      | 1\n",
+       " | 2\n",
+       " | 5\n",
+       " | 
\n",
+       "    \n",
+       "      | 2\n",
+       " | 4\n",
+       " | 6\n",
+       " | 
\n",
+       "    \n",
+       "      | 3\n",
+       " | 6\n",
+       " | 7\n",
+       " | 
\n",
+       "  \n",
+       "
\n",
+       "
'+'\n')
     f.write('        | '+str(round(float(r[1]),2))+ u"\u00B1" +str(round(float(r[2]),2))+''+'\n')
     f.write(' | '+str(round(float(s[1]),2))+ u"\u00B1" +str(round(float(s[2]),2))+''+'\n')
@@ -252,6 +273,11 @@
     f.write(' | '+str(b)+''+'\n')
     f.write(' | 
'+'\n')
 
+out_df = pd.DataFrame([r_value_lst, r_square_lst, b_lst, r_lst, s_lst, RMSE_v_lst, NRMSE_v_lst])
+out_df_T= out_df.T
+out_df_T.columns = ['Intercept', 'R Squre', 'Bias', 'r', 'Slop', 'RMSE', 'NRMSE' ]
+
+out_df_T.to_csv( 'out.tsv', sep="\t",  index=False)
 
 f.write(a2)
 f.close()
\ No newline at end of file