大神求解答 以下python代码为什么错了?

问题描述

大神求解答 以下python代码为什么错了?

from sklearn.cluster import KMeans
kmeans=KMeans(n_clusters=3,init='random') # initialization
kmeans.fit(data) # actual execution

解决方案

你传的参数data有问题吧,仔细看一下你的data参数里面的结构。

解决方案二:

错误信息是什么,是参数给的不正确还是调用方法不对

时间: 2024-09-20 02:57:44

大神求解答 以下python代码为什么错了?的相关文章

c语言编程 求大神 求解答

问题描述 c语言编程 求大神 求解答 ? Write a program that outputs a diamond shape ? Use '*', ' ', and new line character(' ') ? Use the for statement ? The first line has four ' ' and one '*' ? The second line has three ' ' and three '*' ? The third line has two ' '

求大神解答 在线等-快来大神 求解答.................

问题描述 快来大神 求解答................. HTTP Status 500 - Request processing failed; nested exception is org.springframework.dao.DataIntegrityViolationException: type Exception report message Request processing failed; nested exception is org.springframework.

ios-Xcode运行错误,大神求解答

问题描述 Xcode运行错误,大神求解答 Command /Applications/Xcode 2.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang failed with exit code 254 解决方案 这个是什么错误,求大神解答这个是什么错误,求大神解答这个是什么错误,求大神解答 解决方案二: 这不是关键.你把所有的贴上来吧. 解决方案三: 将Apple LLVM compiler 4.1

jsp背景图片不能显示,求大神帮忙解答

问题描述 jsp背景图片不能显示,求大神帮忙解答 这是代码和项目结构图 解决方案 把request.getContextPath()去掉,在url中直接写images/12png 试试 解决方案二: request.getContextPath()获取的是项目的根路径.请确认根路径下面已经存在images这个文件夹并且文件夹里面存在12.png这个图片背景 解决方案三: 你可以把request.getContextPath()去掉在url中直接写../images/12.png 解决方案四: 可

111-大神求解答啊,快救命啊

问题描述 大神求解答啊,快救命啊 如何用代码将excel导入到数据库中,网上给我的代码我也看不懂啊,有没有具体点的,最好像手把手教导那样,eg:上哪找代码?怎样将代码弄到eclipse中?等等 解决方案 什么数据库?excel里的数据格式规范么? 解决方案二: 什么数据库?excel里的数据格式规范么? 解决方案三: 用poi读取excel,再循环读取到数据库 http://blog.csdn.net/shuwei003/article/details/6741649 解决方案四: http:/

大神求帮助, spring 嵌套事务可以管理多个数据源吗?

问题描述 代码是这样的一个大事务里面嵌套两个子事务@Transactional(propagation=Propagation.REQUIRED)publicvoidAUDIT(SaleUserApplysaleUserApply){DataSourceContextHolder.setDataSourceType(DataSourceContextHolder.SALE_DATE_SOURCE);longexcId=saleUserApllyAUDIT1(saleUserApply);//--

file-c语言在linux环境下进行文件复制的代码,使用时出错,求各位大神帮忙解答下

问题描述 c语言在linux环境下进行文件复制的代码,使用时出错,求各位大神帮忙解答下 #include#include#include#include#include#include#include#define BUFSIZE 4096#define COPYMODE 0644 void oops(char *char *);void *emalloc(size_t);void do_copy(char *char *);void copydir(char *char *);int isdi

dao-java继承问题,求大神帮忙解答

问题描述 java继承问题,求大神帮忙解答 service.impl里面是这么写的 public class ServiceImpl implements Service{ private Dao dao; public String getDao(){ return dao.getDao(); } } 下面是dao的代码 public interface Dao { public String getDao(); } 下面是dao.impl代码 public class DaoImpl imp

string-String字符串,求大神帮解答下

问题描述 String字符串,求大神帮解答下 String s9 = ""hello""+""world""; String s10 = ""helloworld""; System.out.println(s9==s10); String s11 = s4+""world""; System.out.println(s10==s11); s10与