Rを引用する
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
// 2006年 1月 16日 月曜日 16:17:47 JST
// 谷村
// じゃんじゃん加筆してください
&size(25){&color(red){''Rを引用する''};};
Rを使った研究成果を論文化するときに、どのように記述するか...
#contents
* 引用文献リストの表記 [#r7c5567f]
引用文献リストのフォーマットは投稿先雑誌の指定に従います...
実際の論文を見ると、citation()の書誌情報以外にR.Ihaka and...
Ihaka, R., and R. Gentleman. 1996. R: a language for dat...
and graphics. J. Comp. Graph. Stat. 5:299-314. Available...
http://www.R-project.org.
これが必要なBibTeXユーザは下記をコピーして使います。
@Article{ihak:gent:1996,
author = {Ross Ihaka and Robert Gentleman},
title = {R: {A} Language for Data Analysis and Graph...
journal = {Journal of Computational and Graphical St...
year = 1996,
volume = 5,
number = 3,
pages = {299--314},
url = {www.r-project.org}
}
この他にも下記のようなものもあります。
R is a language and environment for statistical computing
and graphics similar to S http://cran.r-project.org/.
* citation()の使い方 [#k4e5cae2]
Rの書誌情報が必要なときは
> citation()
To cite R in publications use:
R Core Team (2016). R: A language and environment for ...
computing. R Foundation for Statistical Computing, Vie...
URL https://www.R-project.org/.
A BibTeX entry for LaTeX users is
@Manual{,
title = {R: A Language and Environment for Statistic...
author = {{R Core Team}},
organization = {R Foundation for Statistical Computi...
address = {Vienna, Austria},
year = {2016},
url = {https://www.R-project.org/},
}
We have invested a lot of time and effort in creating R,...
when using it for data analysis. See also ‘citation("pkg...
citing R packages.
とします。この出力をコピー&ペースとして利用します。文献...
citation()の出力の中でBibTeX形式 のところだけ欲しい場合は...
> toBibtex(citation())
@Manual{,
title = {R: A Language and Environment for Statistical...
author = {{R Core Team}},
organization = {R Foundation for Statistical Computing},
address = {Vienna, Austria},
year = {2016},
url = {https://www.R-project.org/},
}
これをbibファイルとして保存したい場合は、
> write(toBibtex(citation()),file="bibファイル")
とします。既存のbibファイルに追記したい場合は、パイプやca...
> write(toBibtex(citation()),file="| cat >> test.bib")
とすれば既存のtest.bibに追記されます。R本体だけはなく、パ...
citation("パッケージ名")
とします。例えば
> citation("maptools")
To cite package 'maptools' in publications use:
Nicholas J. Lewin-Koh and Roger Bivand (2005). maptools...
reading and handling shapefiles. R package version 0.5-2.
A BibTeX entry for LaTeX users is
@Manual{,
title = {maptools: tools for reading and handling sha...
author = {Nicholas J. Lewin-Koh and Roger Bivand},
year = {2005},
note = {R package version 0.5-2},
}
ATTENTION: This citation information has been auto-gener...
package DESCRIPTION file and may need manual editing, see
'help("citation")' .
とします。これも同様にBibTeX形式のところだけ欲しい場合はt...
* BibTeX以外の文献管理ソフトウェアへのエキスポート [#v12c...
bibファイルを他の文献管理ソフトウェアの形式に変換するには...
# apt-get install bibutils
でネットワークインストールされます。簡単でしょ(^o^)/
** EndNote形式に変換する [#h7ed4dea]
ターミナル(Windowsの場合はコマンドプロンプト?)で次のよ...
$ bib2xml bibファイル | xml2end > endnoteファイル
さて、Rの中で処理を完結するには、例えば
> write(toBibtex(citation(),file='/tmp/tmp.bib')
> system('bib2xml /tmp/tmp.bib | xml2end > /tmp/tmp.end')
とすると下記のようなtmp.endができているはず。
%0 Generic
%T R: A Language and Environment for Statistical Computing
%A Team, R. Core
%A R Foundation for Statistical Computing
%D 2016
%C Vienna, Austria
%F Team2016
%U https://www.R-project.org/
また、system()を使わずにそのままwrite()の中ですませること...
> write(toBibtex(citation()),file="| bib2xml | xml2end >...
bib2xml: Processed 1 references.
xml2end: Processed 1 references.
** RIS形式に変換する [#g1b21330]
RIS形式は広く使われているので、bibファイルのインポートに...
$ bib2xml bibファイル | xml2ris > risファイル
* 本文中の記述 [#f286c636]
投稿先のエディタが指示する通りに表記するのが基本です。し...
例えばこんな感じはどうでしょう。
A one-way repeated-measure multivate analysis of varianc...
was used on each of the dependent variables A, B and C t...
differences over time.
References
[1] R Development Core Team (2005). R: A language and en...
computing. R Foundation for Statistical Computing, Vie...
3-900051-07-0, URL http://www.R-project.org.
[[JJCO投稿に際しての統計解析結果のレポートに関するガイド...
また、使用ソフトウェアを記述するときに製作会社(ソフトウ...
----
* コメント [#c013e12f]
#comment
終了行:
// 2006年 1月 16日 月曜日 16:17:47 JST
// 谷村
// じゃんじゃん加筆してください
&size(25){&color(red){''Rを引用する''};};
Rを使った研究成果を論文化するときに、どのように記述するか...
#contents
* 引用文献リストの表記 [#r7c5567f]
引用文献リストのフォーマットは投稿先雑誌の指定に従います...
実際の論文を見ると、citation()の書誌情報以外にR.Ihaka and...
Ihaka, R., and R. Gentleman. 1996. R: a language for dat...
and graphics. J. Comp. Graph. Stat. 5:299-314. Available...
http://www.R-project.org.
これが必要なBibTeXユーザは下記をコピーして使います。
@Article{ihak:gent:1996,
author = {Ross Ihaka and Robert Gentleman},
title = {R: {A} Language for Data Analysis and Graph...
journal = {Journal of Computational and Graphical St...
year = 1996,
volume = 5,
number = 3,
pages = {299--314},
url = {www.r-project.org}
}
この他にも下記のようなものもあります。
R is a language and environment for statistical computing
and graphics similar to S http://cran.r-project.org/.
* citation()の使い方 [#k4e5cae2]
Rの書誌情報が必要なときは
> citation()
To cite R in publications use:
R Core Team (2016). R: A language and environment for ...
computing. R Foundation for Statistical Computing, Vie...
URL https://www.R-project.org/.
A BibTeX entry for LaTeX users is
@Manual{,
title = {R: A Language and Environment for Statistic...
author = {{R Core Team}},
organization = {R Foundation for Statistical Computi...
address = {Vienna, Austria},
year = {2016},
url = {https://www.R-project.org/},
}
We have invested a lot of time and effort in creating R,...
when using it for data analysis. See also ‘citation("pkg...
citing R packages.
とします。この出力をコピー&ペースとして利用します。文献...
citation()の出力の中でBibTeX形式 のところだけ欲しい場合は...
> toBibtex(citation())
@Manual{,
title = {R: A Language and Environment for Statistical...
author = {{R Core Team}},
organization = {R Foundation for Statistical Computing},
address = {Vienna, Austria},
year = {2016},
url = {https://www.R-project.org/},
}
これをbibファイルとして保存したい場合は、
> write(toBibtex(citation()),file="bibファイル")
とします。既存のbibファイルに追記したい場合は、パイプやca...
> write(toBibtex(citation()),file="| cat >> test.bib")
とすれば既存のtest.bibに追記されます。R本体だけはなく、パ...
citation("パッケージ名")
とします。例えば
> citation("maptools")
To cite package 'maptools' in publications use:
Nicholas J. Lewin-Koh and Roger Bivand (2005). maptools...
reading and handling shapefiles. R package version 0.5-2.
A BibTeX entry for LaTeX users is
@Manual{,
title = {maptools: tools for reading and handling sha...
author = {Nicholas J. Lewin-Koh and Roger Bivand},
year = {2005},
note = {R package version 0.5-2},
}
ATTENTION: This citation information has been auto-gener...
package DESCRIPTION file and may need manual editing, see
'help("citation")' .
とします。これも同様にBibTeX形式のところだけ欲しい場合はt...
* BibTeX以外の文献管理ソフトウェアへのエキスポート [#v12c...
bibファイルを他の文献管理ソフトウェアの形式に変換するには...
# apt-get install bibutils
でネットワークインストールされます。簡単でしょ(^o^)/
** EndNote形式に変換する [#h7ed4dea]
ターミナル(Windowsの場合はコマンドプロンプト?)で次のよ...
$ bib2xml bibファイル | xml2end > endnoteファイル
さて、Rの中で処理を完結するには、例えば
> write(toBibtex(citation(),file='/tmp/tmp.bib')
> system('bib2xml /tmp/tmp.bib | xml2end > /tmp/tmp.end')
とすると下記のようなtmp.endができているはず。
%0 Generic
%T R: A Language and Environment for Statistical Computing
%A Team, R. Core
%A R Foundation for Statistical Computing
%D 2016
%C Vienna, Austria
%F Team2016
%U https://www.R-project.org/
また、system()を使わずにそのままwrite()の中ですませること...
> write(toBibtex(citation()),file="| bib2xml | xml2end >...
bib2xml: Processed 1 references.
xml2end: Processed 1 references.
** RIS形式に変換する [#g1b21330]
RIS形式は広く使われているので、bibファイルのインポートに...
$ bib2xml bibファイル | xml2ris > risファイル
* 本文中の記述 [#f286c636]
投稿先のエディタが指示する通りに表記するのが基本です。し...
例えばこんな感じはどうでしょう。
A one-way repeated-measure multivate analysis of varianc...
was used on each of the dependent variables A, B and C t...
differences over time.
References
[1] R Development Core Team (2005). R: A language and en...
computing. R Foundation for Statistical Computing, Vie...
3-900051-07-0, URL http://www.R-project.org.
[[JJCO投稿に際しての統計解析結果のレポートに関するガイド...
また、使用ソフトウェアを記述するときに製作会社(ソフトウ...
----
* コメント [#c013e12f]
#comment
ページ名: