我遇到了
py_get_attr_impl(x,name,silent)中的错误:AttributeError: '数据帧'对象没有属性' dtype'
使用R中的网状包调用R中的python代码。
python中的代码运行正常。我不确定这个错误会在哪里发生。我正在使用pvlib python库来调用构建数据库中的一些。
我的代码是R代码:
library('reticulate')
pd <- import('pandas')
pvlib <- import('pvlib')
np <- import('numpy')
sandia_modules = pvlib$pvsystem$retrieve_sam('SandiaMod')
cec_inverters = pvlib$pvsystem$retrieve_sam("CECInverter")
我遇到cec_inverters = pvlib$pvsystem$retrieve_sam("CECInverter")
的问题,当我在python中的代码工作但是在R中运行相同的命令时给了我错误。我不确定是什么问题。请帮我解决这个问题。
python中的类似代码是:
import pandas as pd
import numpy as np
import pvlib
sandia_modules = pvlib.pvsystem.retrieve_sam('SandiaMod')
cec_inverters = pvlib.pvsystem.retrieve_sam('cecinverter')
我尝试寻找解决方案,但到目前为止还没有找到任何有用的东西。
这里是追溯:
10: stop(list(message = "AttributeError: 'DataFrame' object has no attribute 'dtype'",
call = py_get_attr_impl(x, name, silent), cppstack = list(
file = "", line = -1L, stack = "C++ stack not available on this system")))
9: .Call(`_reticulate_py_get_attr_impl`, x, name, silent)
8: py_get_attr_impl(x, name, silent)
7: py_get_attr(x, name)
6: `$.python.builtin.object`(x[[column]], "dtype")
5: x[[column]]$dtype
4: py_to_r(x[[column]]$dtype$name)
3: py_to_r.pandas.core.frame.DataFrame(result)
2: py_to_r(result)
1: pvlib$pvsystem$retrieve_sam("CECInverter")
答案 0 :(得分:1)
尝试使用as
中的import()
参数。您的代码也对我有误,但这有效:
library(reticulate) # version 1.6
pd <- import('pandas', as = "pd")
pvlib <- import('pvlib', as = "pvlib")
np <- import('numpy', as = "np")
sandia_modules <- pvlib$pvsystem$retrieve_sam('SandiaMod')
cec_inverters <- pvlib$pvsystem$retrieve_sam("CECInverter")
答案 1 :(得分:0)
我很早就弄清楚了,但是现在发布到这里,来自GitHub的"reticulate"
软件包是最新的软件包,此版本已解决了许多问题。主要的是pandas
DataFrame
转换为R data.frame
这是执行此操作的代码
library(devtools)
devtools::install_github("rstudio/reticulate")