トップ
新規
一覧
単語検索
最終更新
ヘルプ
ログイン
アールメカブ
Lattice_levelplot_points
をテンプレートにして作成
開始行:
[[Rの備忘録]]
[[R_Lattice]]
RjpWikiの初心者質問に以下のような問があった.
>
latticeパッケージ内にあるlevelplot関数を使用しています。...
<
''lattice''では par は無視されてしまうので,以下のように...
levelplot(volcano, panel = function(x,y,..., subscripts)
{
panel = panel.levelplot(x, y, ..., subscripts)
panel.points(20,20,col=2,cex=2 )
})
--------------
他に以下を実行しておくと,すべての ''lattice'' プロットの...
lattice.options(default.args = list(page = function(n)
grid::grid.text(date(), x = 0.01, y = 0.01,
default.units = "npc",
just = c("left", "bottom"))))
終了行:
[[Rの備忘録]]
[[R_Lattice]]
RjpWikiの初心者質問に以下のような問があった.
>
latticeパッケージ内にあるlevelplot関数を使用しています。...
<
''lattice''では par は無視されてしまうので,以下のように...
levelplot(volcano, panel = function(x,y,..., subscripts)
{
panel = panel.levelplot(x, y, ..., subscripts)
panel.points(20,20,col=2,cex=2 )
})
--------------
他に以下を実行しておくと,すべての ''lattice'' プロットの...
lattice.options(default.args = list(page = function(n)
grid::grid.text(date(), x = 0.01, y = 0.01,
default.units = "npc",
just = c("left", "bottom"))))
ページ名: