From b4688bda6884a934a528c8726fdb1ed26695d0f1 Mon Sep 17 00:00:00 2001 From: udlbook <110402648+udlbook@users.noreply.github.com> Date: Mon, 27 Jan 2025 17:38:54 -0500 Subject: [PATCH] Created using Colab --- Trees/LinearRegression_FitModel.ipynb | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Trees/LinearRegression_FitModel.ipynb diff --git a/Trees/LinearRegression_FitModel.ipynb b/Trees/LinearRegression_FitModel.ipynb new file mode 100644 index 0000000..e1dbcc7 --- /dev/null +++ b/Trees/LinearRegression_FitModel.ipynb @@ -0,0 +1,51 @@ +{ + "nbformat": 4, + "nbformat_minor": 0, + "metadata": { + "colab": { + "provenance": [], + "authorship_tag": "ABX9TyNK+Qh1d1D+PE6hFu1NbrbI", + "include_colab_link": true + }, + "kernelspec": { + "name": "python3", + "display_name": "Python 3" + }, + "language_info": { + "name": "python" + } + }, + "cells": [ + { + "cell_type": "markdown", + "metadata": { + "id": "view-in-github", + "colab_type": "text" + }, + "source": [ + "\"Open" + ] + }, + { + "cell_type": "markdown", + "source": [ + "# Fitting the model" + ], + "metadata": { + "id": "uORlKyPv02ge" + } + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "bbF6SE_F0tU8" + }, + "outputs": [], + "source": [ + "import numpy as np\n", + "import matplotlib.pyplot as plt" + ] + } + ] +} \ No newline at end of file