R 2.7.0 の変更予定
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
R 2.7.0 の変更予定
注意:[[オリジナル文書:https://svn.r-project.org/R/trunk/...
----
#contents
----
* ユーザに見える変更 [#h5d3c6ab]
* 新しい仕様 [#sd7b2800]
- identify() recycles its 'labels' argument if necessary.
- ew function as.octmode() to create object such as file ...
- dir.create() has a new argument 'mode', used on Unix-al...
- New function Sys.chmod(), a wrapper for 'chmod' on plat...
- as.POSIXlt() is now generic, and it and as.POSIXct() ga...
- as.Date(), as.POSIXct() and as.POSIXlt() now convert nu...
- New higher-order function Negate().
- PCRE has been updated to 7.4.
- In addition to warning when 'pkgs' is not found, instal...
- deriv() は digamma(x), trigamma(x), psigamma(x, deriv) ...
-- R 2.6.0 まで
> deriv(~digamma(x), "x")
以下にエラー deriv.formula(~digamma(x), "x") :
関数 'digamma' は導関数の表中にありません
-- R 2.7.0 から
> deriv(~digamma(x), "x")
expression({
.value <- digamma(x)
.grad <- array(0, c(length(.value), 1L), list(NULL, ...
.grad[, "x"] <- trigamma(x)
attr(.value, "gradient") <- .grad
.value
})
* 旧式化と廃止 [#edc1f09c]
- In package installation, SaveImage: yes is defunct and ...
- $ on an atomic vector or S4 object is now defunct.
- Partial matching in [[ is now only performed if explici...
* ユーティリティー [#f53bd771]
- Rd ファイルの「キーワード」項目は必須ではなくなった。
* バグフィックス [#we962474]
終了行:
R 2.7.0 の変更予定
注意:[[オリジナル文書:https://svn.r-project.org/R/trunk/...
----
#contents
----
* ユーザに見える変更 [#h5d3c6ab]
* 新しい仕様 [#sd7b2800]
- identify() recycles its 'labels' argument if necessary.
- ew function as.octmode() to create object such as file ...
- dir.create() has a new argument 'mode', used on Unix-al...
- New function Sys.chmod(), a wrapper for 'chmod' on plat...
- as.POSIXlt() is now generic, and it and as.POSIXct() ga...
- as.Date(), as.POSIXct() and as.POSIXlt() now convert nu...
- New higher-order function Negate().
- PCRE has been updated to 7.4.
- In addition to warning when 'pkgs' is not found, instal...
- deriv() は digamma(x), trigamma(x), psigamma(x, deriv) ...
-- R 2.6.0 まで
> deriv(~digamma(x), "x")
以下にエラー deriv.formula(~digamma(x), "x") :
関数 'digamma' は導関数の表中にありません
-- R 2.7.0 から
> deriv(~digamma(x), "x")
expression({
.value <- digamma(x)
.grad <- array(0, c(length(.value), 1L), list(NULL, ...
.grad[, "x"] <- trigamma(x)
attr(.value, "gradient") <- .grad
.value
})
* 旧式化と廃止 [#edc1f09c]
- In package installation, SaveImage: yes is defunct and ...
- $ on an atomic vector or S4 object is now defunct.
- Partial matching in [[ is now only performed if explici...
* ユーティリティー [#f53bd771]
- Rd ファイルの「キーワード」項目は必須ではなくなった。
* バグフィックス [#we962474]
ページ名: