简体   繁体   English

尝试绘制createTreeView并获取工具中的错误::: httpdPort> 0L

[英]Trying to plot createTreeView and get the Error in tools:::httpdPort > 0L

Recently, I started using R Revolution, and I tried to run a example code to visualize a decision tree. 最近,我开始使用R Revolution,并尝试运行示例代码来可视化决策树。

I ran the code: 我跑了代码:

data("kyphosis", package="rpart") 
kyphTree <- rxDTree(Kyphosis ~ Age + Start + Number, data = kyphosis, cp=0.01) 
library(RevoTreeView)
plot(createTreeView(kyphTree))

And got the error: 得到了错误:

Error in tools:::httpdPort > 0L : 
  comparison (6) is possible only for atomic and list types

I searched about this error, I'm using the R 3.2.2 and already updated my Rstudio. 我搜索了这个错误,我正在使用R 3.2.2并且已经更新了我的Rstudio。

Someone could help me? 有人可以帮帮我吗?

Tks, 韩国社交协会,

Your problem is not related to RStudio. 您的问题与RStudio无关。 It appears to be a bug in the plot function for revoTreeView . 它似乎是revoTreeView的plot函数中的一个错误。 The error shows that a comparison is being made with tools:::httpdPort (first few lines of the plot.revoTreeView function). 错误显示正在与tools:::httpdPortplot.revoTreeView函数的前几行)进行比较。 This is a function, not a number. 这是一个功能,而不是一个数字。 Please submit through your Microsoft support channels. 请通过您的Microsoft支持渠道提交。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Rstudio中的“工具中的错误::: httpdPort <= 0L:...”是什么意思? - What does “Error in tools:::httpdPort <= 0L : …” in Rstudio means? dcast错误:`匹配错误(x,表,nomatch = 0L)` - dcast error: `Error in match(x, table, nomatch = 0L)` if(REML)p else 0L时出错:参数长度为零 - Error in if (REML) p else 0L : argument is of length zero 匹配错误(el,set,0L):“匹配”需要向量参数? - Error in match(el, set, 0L) : 'match' requires vector arguments? Foverlaps 错误: if (any(x[[xintervals[2L]]] - x[[xintervals[1L]]] &lt; 0L)) 中的错误停止 - Foverlaps error: Error in if (any(x[[xintervals[2L]]] - x[[xintervals[1L]]] < 0L)) stop 使用ggsurplot时匹配错误(x,表,不匹配= 0L - Error in match(x, table, non match =0L when using ggsurplot 匹配错误(x,表,nomatch = 0L):“匹配”需要向量参数 - Error in match(x, table, nomatch = 0L) : 'match' requires vector arguments 修拉中的 FindVariableFeatures Function 产生“匹配错误(x,表,nomatch = 0L):'匹配'需要向量参数” - FindVariableFeatures Function in Seurat Producing “Error in match(x, table, nomatch = 0L) : 'match' requires vector arguments” 在if(d2 == 0L)中使用cut error设置bin分组时出错{:缺少值需要TRUE / FALSE - Error in setting bin grouping using cut Error in if (d2 == 0L) { : missing value where TRUE/FALSE needed 我如何克服执行lmer函数时遇到的错误:if(REML)p else 0L中的错误:参数不能解释为逻辑? - How do I overcome this error in execution of lmer function: Error in if (REML) p else 0L : argument is not interpretable as logical?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM