Learn practical skills, build real-world projects, and advance your career

logistic-regression

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
|████████████████████████████████| 71kB 4.0MB/s eta 0:00:01 Building wheel for uuid (setup.py) ... done
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="logistic-regression")
[jovian] Detected Colab notebook... [jovian] Please enter your API key ( from https://jovian.ai/ ): API KEY: ·········· [jovian] Uploading colab notebook to Jovian... [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ai/ritz1602-rs/logistic-regression
#Importing the libraries
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd