我有一个NA
,我无法弄清楚如何修复我的软件包手册中的一个条目。这是第一个主题,包本身。它应该显示我的包裹的标题:“MA Birk的功能”,而只是NA
。
以下是包描述的相关.R
代码(注意我使用的是roxygen2):
#' MA Birk’s Functions
#'
#' This is a compilation of functions that I found useful to make. It currently includes a unit of measurement conversion function, a Q10 calculator for temperature dependence of chemical and biological rates, and some miscellaneous wrapper functions to make R code shorter and faster to write.
#'
#' @author Matthew A. Birk, \email{matthewabirk@@gmail.com}
#' @docType package
#' @name birk
#' @encoding UTF-8
NULL
结果.Rd
文件:
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/birk.R
\docType{package}
\encoding{UTF-8}
\name{birk}
\alias{birk}
\alias{birk-package}
\title{MA Birk’s Functions}
\description{
This is a compilation of functions that I found useful to make. It currently includes a unit of measurement conversion function, a Q10 calculator for temperature dependence of chemical and biological rates, and some miscellaneous wrapper functions to make R code shorter and faster to write.
}
\author{
Matthew A. Birk, \email{matthewabirk@gmail.com}
}
我注意到在任何生成的HTML页面中都没有出现NA
,也没有在构建或检查包时出现任何错误。但是在手册中这是NA
:
我有3个此软件包的早期版本,从未遇到此问题。对于此最新版本,我从手动输入.Rd
信息切换为使用roxygen2
。我认为NA
问题是由某个地方引起的......
我不认为DESCRIPTION
文件与它有任何关系,所以我没有把它包含在这个问题中(太杂乱了),但如果你怀疑它我就知道了,我可以把它添加为好。