为了测试Featuretools的工作,我通过RStudio安装了featuretoolsR,并在Python中安装了numpy和featuretools。
然而,在尝试创建实体后出现错误
# Libs
library(featuretoolsR)
library(magrittr)
# Create some mock data
set_1 <- data.frame(key = 1:100, value = sample(letters, 100, T))
set_2 <- data.frame(key = 1:100, value = sample(LETTERS, 100, T))
# Create entityset
es <- as_entityset(set_1, index = "key", entity_id = "set_1", id = "demo")```
Error: lexical error: invalid char in json text.
WARNING: The conda.compat modul
(right here) ------^
Kindly help in diagnosing and providing solution to same.
答案 0 :(得分:1)
在更新到conda版本4.6.11之后,我也遇到了同样的警告。我认为问题是由于compat.py脚本末尾的print语句而产生的。我知道这不是一个很好的解决方法,但是我访问了compat.py文件并删除了打印语句:
print("WARNING: The conda.compat module is deprecated and will be removed in a future release.", file=sys.stderr)
文件应位于此处:\ Anaconda3 \ pkgs \ conda-4.6.11-py37_0 \ Lib \ site-packages \ conda
希望对您有帮助。