knit2wp错误。不识别用户名或密码

时间:2015-08-30 15:54:44

标签: r

我使用knitr包将.Rmd文件发布到wordpress。我第一次使用这种类型的项目并遇到以下错误/问题。任何人都可以帮助确定问题。已经完成了一些谷歌搜索,但似乎并没有类似的问题。还尝试使用newPost函数执行此任务,但这没有用。

if (!require('RWordPress'))
  install.packages('RWordPress', repos = 'http://www.omegahat.org/R', type = 'source')
library(RWordPress)
options(WordPressLogin = c(username = "*****"),
        WordPressURL = "https://mathewanalytics.com/xmlrpc.php")

library(knitr)
knit2wp("Logistic_Regression_Document.Rmd", 
        title = "Evaluation Logistic Regression in R", 
        shortcode=TRUE, publish=FALSE )


List of 4
 $ results: chr "hide"
 $ message: logi FALSE
 $ warning: logi FALSE
 $ eval   : logi FALSE

  |.................................................................| 100%
  ordinary text without R code


output file: Logistic_Regression_Document.md

Error in getOption("WordpressLogin", stop("need a login and password")) : 
  need a login and password
In addition: Warning messages:
1: In Ops.factor(1, obs) : '-' not meaningful for factors
2: In Ops.factor(1, obs) : '-' not meaningful for factors
3: In Ops.factor(1, y) : '-' not meaningful for factors

1 个答案:

答案 0 :(得分:10)

我也有这个问题,结果证明变量名有问题。

您正在设置:(注意大写P)

self.view.removeGestureRecognizer(YOUR_GESTURE_RECOGNISER)

但是该函数抛出了这个错误:

WordPressLogin = c(username = "*****")

所以如果你设置了正确的变量:

Error in getOption("WordpressLogin", stop("need a login and password"))

然后你应该没事。