Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

from sklearn.datasets import load _ iris iris = load _ iris ( ) import numpy as np import matplotlib.pyplot as plt from sklearn.cluster import KMeans

from sklearn.datasets import load_iris
iris = load_iris()
import numpy as np
import matplotlib.pyplot as plt
from sklearn.cluster import KMeans
feature = iris.data
X = feature[:,[2,3]]
def plot_kmeans(n):
~Code you need to write~
for i in range(1,5):
plot_kmeans(i)
Please find the appropriate number of clusters. You don't need to get numerical results.
You just need to complete the code to perform cluster analysis to the extent that you can see it with your eyes
No additional packages are used other than those given in the code.
In the form above
~Code you need to write~ Please fill in the part.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions