regression tag

4 questions


1 answers
342 views
0
Logistic regression

The logistic regression definition is The name is regression, but it's actually a classification model, and I've created an example in a situation where predicting a classification is understood.Becau...


2 answers
53 views
0
Python regression code question.

from sklearn.datasets import load_bostonboston = load_boston()from matplotlib import pyplot as pltplt.scatter(boston.data[:,5], boston.target, color='r')import numpy as npx = boston.data[:,5]x = np.ar...


1 answers
95 views
0
Predicting accuracy with one Python logistic regression column

I'm studying how to code the accuracy of two categories from Cycitron Wisconsin breast cancer data.There are a total of 569 rows of data, and 30 columns to distinguish them.The code I studied previous...


1 answers
124 views
0
Logistic Regression Question

Hello. I'm asking you a question because I couldn't understand while doing my university assignment.A problem that creates a logistic regression model and outputs model performance through a training ...


© 2024 OneMinuteCode. All rights reserved.