- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
用户在 R( here 或 here )中安装软件包时遇到相同的错误消息,解决方案似乎是切换站点镜像或等待维护者修复错误。但是,我在将我的包上传到 CRAN 时遇到了问题,并且在 Mac 上创建的包没有通过 Windows 和 R 的开发人员版本的检查。
有问题的上传到CRAN是第六版的包,第一次出现这个错误。
* installing *source* package 'packagename' ...
** using staged installation
** R
Error in parse(outFile) :
d:/temp/RtmpGW8fFv/R.INSTALL129d81ef3788f/packagename/R/functionname.R:1:1: unexpected '<'
1: <
^
ERROR: unable to collate and parse R files for package 'packagename'
* removing 'd:/RCompile/CRANguest/R-devel/lib/packagename'
Depends: R (>= 3.4.0),
License: GPL-3
Encoding: UTF-8
LazyData: true
Imports: limSolve,
quadprog,
stats,
graphics,
grDevices
RoxygenNote: 6.1.1
Suggests: testthat
BuildVignettes: true
base
命令和
limSolve::linp
.
#' Fuzzy Linear Regression using the Fuzzy Least Absolute Residual Method
#'
#' The function calculates fuzzy regression coeficients using the fuzzy least absolute
#' residual (FLAR) method proposed by Zeng et al. (2017)
#' for non-symmetric triangular fuzzy numbers.
#' @param x matrix with the second to last columns representing independent variable
#' observations. The first column is related to the intercept, so it consists of ones.
#' Missing values not allowed.
#' @param y matrix of dependent variable observations. The first column contains the
#' central tendency, the second column the left spread and the third column the right
#' spread of non-symmetric triangular fuzzy numbers. Missing values not allowed.
#' @details The FLAR method expects real value input for the explanatory variables, and
#' non-symmetric triangular fuzzy numbers for the response variable. The prediction
#' returns non-symmetric triangular fuzzy numbers.
#' @note Preferred use is through the \code{\link{fuzzylm}} wrapper function with argument
#' \code{method = "flar"}.
#' @inherit fuzzylm return
#' @inherit plrls seealso
#' @references Zeng, W., Feng, Q. and Li, J. (2017) Fuzzy least absolute linear regression.
#' \emph{Applied Soft Computing} 52: 1009-1019.
#' @keywords fuzzy
#' @export
#' @examples
#' data(fuzzydat)
#' fuzzylm(y ~ x, fuzzydat$dia, "flar", , , "yl", "yl")
flar <- function(x, y){
vars <- colnames(x)
n <- nrow(x)
p <- ncol(x)
X <- x
I <- diag(n)
Ir <- diag(p)
Z <- matrix(0, ncol = n, nrow = n)
ZX <- matrix(0, nrow = n, ncol = p)
ZXr <- matrix(0, nrow = p, ncol = p)
Zr <- matrix(0, nrow = p, ncol = n)
f <- c(rep(1, 6*n), rep(0, 3*p))
Req <- cbind(I, -I, Z, Z, Z, Z, X, ZX, ZX)
Req <- rbind(Req, cbind(Z, Z, I, -I, Z, Z, ZX, X, ZX))
Req <- rbind(Req, cbind(Z, Z, Z, Z, I, -I, ZX, ZX, X))
leq <- matrix(c(y))
R <- cbind(-I, Z, Z, Z, Z, Z, ZX, ZX, ZX)
R <- rbind(R, cbind(Z, -I, Z, Z, Z, Z, ZX, ZX, ZX))
R <- rbind(R, cbind(Z, Z, -I, Z, Z, Z, ZX, ZX, ZX))
R <- rbind(R, cbind(Z, Z, Z, -I, Z, Z, ZX, ZX, ZX))
R <- rbind(R, cbind(Z, Z, Z, Z, -I, Z, ZX, ZX, ZX))
R <- rbind(R, cbind(Z, Z, Z, Z, Z, -I, ZX, ZX, ZX))
R <- rbind(R, cbind(Zr, Zr, Zr, Zr, Zr, Zr, ZXr, -Ir, ZXr))
R <- rbind(R, cbind(Zr, Zr, Zr, Zr, Zr, Zr, ZXr, ZXr, -Ir))
R <- rbind(R, cbind(Z, Z, Z, Z, Z, Z, ZX, -X, ZX))
R <- rbind(R, cbind(Z, Z, Z, Z, Z, Z, ZX, ZX, -X))
l <- matrix(rep(0, 8*n + 2*p))
sorig <- limSolve::linp(E = Req, F = leq, G = -R, H = -l, Cost = f, ispos = FALSE)
s <- sorig$X
coefs <- matrix(c(s[(6*n+1):(6*n+p)],
s[(6*n+p+1):(6*n+2*p)],
s[(6*n+2*p+1):(6*n+3*p)]), ncol = 3,
dimnames = list(vars, c("center", "left.spread", "right.spread")))
lims <- t(apply(x, 2, range))
rownames(lims) <- vars
colnames(lims) <- c("min", "max")
fuzzy <- list(call = NULL, x = x, y = y, lims = lims,
method = "fls", fuzzynum = "non-symmetric triangular", coef = coefs)
class(fuzzy) <- "fuzzylm"
fuzzy
}
最佳答案
看来我找到了问题的原因和解决方案。具有问题功能的文件是在 Windows (RStudio) 上创建并在 Mac (BBEdit) 上编辑的。 Mac 尝试在编辑期间保留 Windows 行结尾,并且在将文件返回到 Windows 时,编码更改为 UTF8 的一种罕见变体。 Windows 上的 R 编译器无法处理外来编码。
解决方案似乎是始终将所有行结尾强制为 LF
跨平台并确保文件编码在不同平台上保持稳定。
关于r - 错误 : unable to collate and parse R files for package - upload to CRAN,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56471638/
我正在尝试使用 JAXB 从 XSD 生成 java 类。 XSD 是我公司的官方 xsd,因此我无法仅为我的项目修改它们。在该网站上进行了数百次尝试和搜索后,我决定直接提出问题。 我的 XSD 中有
我已经了解了以下链接中的详细信息,但仍然存在何时使用哪个文件的问题?https://docs.npmjs.com/files/package-lock.json 最佳答案 包.json 包含项目的相关
当我在 centos 上运行命令 rpmbuild -bb mypackage.spec 时,出现错误 error: Package already exists: %package debuginf
my.packages 是 src 目录中的自定义原型(prototype)包。 Plone 实例中的数千个项目与其类型一起添加。我想将包重命名为 my.package。通过简单地卸载 my.pack
根据 javadoc 规范,我在相关包的根目录中放置了一个名为 package-info.html 的文档文件。但是,当我在该文件夹上运行 Doxygen 时,不会拾取该文件中的文档。我如何告诉 Do
我已经定义了如下的包: (defpackage :thehilariouspackageofamirteymuri (:nicknames ampack amir teymuri) (:use
我正在思考这个问题: > .packages() > (.packages()) [1] "stats" "graphics" "grDevices" "utils" "datase
我在内存中有一个 System.IO.Packaging.Package(它是一个 WordprocessingDocument)并且想将它流式传输到浏览器以保存它。 Word 文档已被基于 MVC
即使这是我不常发现的东西,在成员之前注释/* package*/的原因是什么? /* package */ final void attach(Context context) { atta
我正在开发我的应用程序,但在添加包以便导入它时,我总是收到此错误。 error: type 'Package.Dependency' has no member 'Package' 这是我的 Pack
install.packages("data.table") trying URL 'https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.
放置手动创建的插件的最佳位置是什么: a) C:\Users\{UserName}\AppData\Roaming\Sublime Text 3\Packages 或 b) C:\Users\{Use
这是一个有趣的 Perl 行为。 (至少对我来说 :) ) 我有两个包 PACKAGE1 和 PACKAGE2,它们导出具有相同名称的函数 Method1()。 由于将有如此多的包将导出相同的功能,使
package-archives (("marmalade" . "http://marmalade-repo.org/packages/") ("gnu" . "http://elpa.gnu.or
任何人都可以让我知道 package-lock.json 文件的确切用途吗? 尽管许多人提到它用于查看版本化依赖树。 寻找简单易行的解释。 提前致谢。 最佳答案 npm install使用此文件来确保
Python documentation说 Consider this code: import sound.effects.echo import sound.effects.surround fr
我在 ubuntu 上运行 VPS: Distributor ID: Ubuntu Description: Ubuntu 14.04.5 LTS Release: 14.04 C
我有这样一个结构 $ tree -h . ├── [1.0K] myproj │ ├── [ 0] index.py │ ├── [ 0] __init__.py │ └──
我正在尝试解压 System.IO.Packaging.Package我从网络服务器收到的。也就是说,我正在使用 System.IO.Packaging.Package.Open(Stream)方法并
关于 package.json 文件中的@types 依赖项,我有一个愚蠢的问题: 在下面的 URL 中解释了应该安装的类型作为运行时依赖 npm install --save @types/loda
我是一名优秀的程序员,十分优秀!