参数格式不正确-“ pt_price”

时间:2019-03-06 17:20:33

标签: python jupyter-notebook jupyter-lab

我主要复制并粘贴source code from GitHub,但是我面对的是“参数格式不正确”,它应该显示apt_data中的文件“ chicken1,chicken2,chicken3”,但是它什么也没做。如果我直接加载chicken1文件,计算机会读取其中的内容。

enter image description here

!pip show plotnine
  

名称:plotnine
  版本:0.5.1
  摘要:python的图形语法
  主页:https://github.com/has2k1/plotnine
  作者:无
  作者电子邮件:无
  执照:GPL-2   位置:c:\ users \ jb_head \ appdata \ local \ continuum \ anaconda3 \ lib \ site-packages
  需要:patsy,mizani,statsmodels,pandas,scipy,笛卡尔,numpy,matplotlib
  必填者:

!pip show missingno
  

名称:missingno
  版本:0.4.1
  摘要:缺少用于Python的数据可视化模块。
  主页:https://github.com/ResidentMario/missingno
  作者:Aleksey Bilogur
  作者电子邮件:aleksey.bilogur@gmail.com
  许可证:UNKNOWN
  位置:c:\ users \ jb_head \ appdata \ local \ continuum \ anaconda3 \ lib \ site-packages
  需要:numpy,matplotlib,scipy,seaborn
  必填者:

import warnings
warnings.filterwarnings('ignore')

import pandas as pd
import numpy as np
import re
from plotnine import *

%pwd
  

'C:\ Users \ JB_Head'

%ls data/apt_price/
  

参数格式不正确-“ pt_price”。

pre_sale = pd.read_csv('data/apt_price/chicken1.csv', encoding='euc-kr')
pre_sale.shape
  

(2805,5)

pre_sale.head()
  

지역명격가격(㎡)0서울2015年10月5841 1전용면적
  60㎡하2015 10 5652 2전용면적60㎡초과85㎡이하2015 10 5882 3전용면적85㎡초과
  102㎡이하2015 10 5721 4서울102㎡초과2015 10 5879

0 个答案:

没有答案