TypeError: pivot_table() got an unexpected keyword argument 'rows'
利用Python进行数据分析》第二章,处理MovieLens 1M数据集,有句代码总是报错:
mean_rating = data.pivot_table('rating', rows='title', cols='gender', aggfunc='mean')报错信息如下:
Traceback (most recent call last):
  File "D:\Users\wangshuang829\AppData\Local\Continuum\Anaconda\lib\site-packages\IPython\core\interactiveshell.py", line 3035, in run_code
    exec(code_obj, self.user_global_ns, self.user_ns)
  File "<ipython-input-47-d6e7435a4a95>", line 1, in <module>
    mean_rating = data.pivot_table('rating', rows='title', cols='gender', aggfunc='mean')
TypeError: pivot_table() got an unexpected keyword argument 'rows'修改办法:rows改成index,cols写成全名”columns”
mean_rating = data.pivot_table('rating', index='title', columns='gender', aggfunc='mean')修改后得到正确处理结果:
gender                                F         M
title
$1,000,000 Duck (1971)         3.375000  2.761905
'Night Mother (1986)           3.388889  3.352941
'Til There Was You (1997)      2.675676  2.733333
'burbs, The (1989)             2.793478  2.962085
...And Justice for All (1979)  3.828571  3.689024TypeError: pivot_table() got an unexpected keyword argument 'rows'的更多相关文章
- TypeError: parse() got an unexpected keyword argument 'transport_encoding'
		错误: TypeError: parse() got an unexpected keyword argument 'transport_encoding'You are using pip vers ... 
- TypeError: __init__() got an unexpected keyword argument 't_command'
		python .\manage.py migrate 报错如下 λ python .\manage.py migrateTraceback (most recent call last): File ... 
- TypeError: while_loop() got an unexpected keyword argument 'maximum_iterations'
		错误: TypeError: while_loop() got an unexpected keyword argument 'maximum_iterations' 参照https://blog.c ... 
- TypeError: to_categorical() got an unexpected keyword argument 'nb_classes'
		在学习莫烦教程中keras教程时,报错:TypeError: to_categorical() got an unexpected keyword argument 'nb_classes',代码如下 ... 
- TypeError: parse() got an unexpected keyword argument 'transport_encoding'  安装tensor后报错
		TypeError: parse() got an unexpected keyword argument 'transport_encoding' 巨蛋疼,出这个问题后,老夫真是醉了,mmp,最后在 ... 
- Python pika, TypeError: exchange_declare() got an unexpected keyword argument 'type' 问题修复
		网上很多写法都是 type='fanout' 这样的.(这里是基于python=3.6版本, pika=0.13.0 版本) credentials = pika.PlainCredentials(' ... 
- TypeError: _obtain_input_shape() got an unexpected keyword argument 'include_top'
		报错 Traceback (most recent call last): File "D:/PyCharm 5.0.3/WorkSpace/3.Keras/2.Application中五款 ... 
- Django TypeError: render() got an unexpected keyword argument 'renderer'
		场景: Xadmin添加plugin 来源: 1. xadmin与DjangoUeditor的安装 (第3.3章节) 2. 增加富文本编辑器Ueditor (第14.7章节) 报错: Django T ... 
- TypeError: __init__() got an unexpected keyword argument 'serialized_options'
		问题描述: TypeError: __init__() got an unexpected keyword argument 'serialized_options' File "objec ... 
随机推荐
- eclipse不能添加tomcat7的问题
			问题如下: 解决问题: 1.把eclipse先关了 2.把eclipse的工作空间的两个文件删除 org.eclipse.jst.server.tomcat.core.prefs和org.eclips ... 
- 数据结构实习 problem O Huffman Tree
			Huffman Tree 题目描述 对输入的英文大写字母进行统计概率 然后构建哈夫曼树,输出是按照概率降序排序输出Huffman编码. 输入 大写字母个数 n 第一个字母 第二个字母 第三个字母 .. ... 
- 解题报告:hdu1284 钱币兑换问题
			2017-09-03 19:03:06 writer:pprp 状态定义: dp[i][j] = x 代表的是 用前i 中硬币构造 j 美分的方法数目: 初始化: dp[0][0] = 1 状态转移: ... 
- spring-boot 加入拦截器Interceptor
			1.spring boot拦截器默认有 HandlerInterceptorAdapter AbstractHandlerMapping UserRoleAuthorizationIntercepto ... 
- Codeforces Round #358 (Div. 2) C. Alyona and the Tree  dfs
			C. Alyona and the Tree time limit per test 1 second memory limit per test 256 megabytes input standa ... 
- RotateCard(自定义旋转view)
			使用方法Demo package com.example.displaydemo; import java.util.ArrayList; import com.example.displaydemo ... 
- SSM整合报错org.springframework.beans.factory.UnsatisfiedDependencyException
			我解决的办法是把.m2仓库所有文件删除,重新maven project就可以了. 但是在做这一步之前,报错如下: ①org.springframework.beans.factory.Unsatisf ... 
- css实现一色多变化
			.pesudo{ position: absolute; top:50%; left: 50%; transform:translate(-50%,-50%); width: 120px; paddi ... 
- pahlcon:循环调度(Dispatch Loop)或跳转
			循环调度将会在分发器执行,直到没有action需要执行为止.在上面的例子中,只有一个action 被执行到.现在让我们来看下“forward”(转发)怎样才能在循环调度里提供一个更加复杂的操作流,从而 ... 
- [java]BoneCP 参数详解
			BoneCP 参数详解: ======================================== 一.BoneCP配置文件格式(bonecp-config.xml): xml versio ... 
