カラーチャート
の編集
http://www.okadajp.org/RWiki/?%E3%82%AB%E3%83%A9%E3%83%BC%E3%83%81%E3%83%A3%E3%83%BC%E3%83%88
[
トップ
] [
編集
|
差分
|
バックアップ
|
添付
|
リロード
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
-- 雛形とするページ --
(no template pages)
COLOR(red){SIZE(20){カラーチャート}} 一番最後に,これを作ったソースを添付 #ref(colorchart01.png) #ref(colorchart02.png) #ref(colorchart03.png) #ref(colorchart04.png) #ref(colorchart05.png) #ref(colorchart06.png) #ref(colorchart07.png) #ref(colorchart08.png) #ref(colorchart09.png) *ソース polygon.plot <- function(row, col, name, name.of.color, height, cell.width, cell.height) { row <- row*cell.width col <- col*cell.height ordinate.x <- c(row, row, row+cell.width, row+cell.width, row) ordinate.y <- height-c(col, col+cell.height, col+cell.height, col, col) polygon(ordinate.x, ordinate.y, col=name.of.color) text(row+cell.width*0.1, height-(col+cell.height*0.6), name, pos=4) text(row+cell.width*0.1, height-(col+cell.height*0.4), name.of.color, pos=4) text(row+cell.width*0.1, height-(col+cell.height*0.2), name.of.color,pos=4,col="white") } color.chart <- function(n.width=8, n.height=10) { width <- 1200 height <- 900 name.of.color <- colors() n <- length(name.of.color) max <- floor(n/(n.width*n.height)) pdf("colorchart%02i.pdf", onefile=FALSE, width=width/72, height=height/72) for (i in 0:max) { plot(c(0, width, width, 0, 0), c(0, 0, height, height, 0),type="n", xaxt="n", yaxt="n", xlab="",ylab="") for (col in 0:(n.height-1)) { for (row in 0:(n.width-1)) { name <- (n.width*n.height)*i+col*n.width+row+1 cat(name, ", ", name.of.color[name], "¥n") polygon.plot(row, col, name, name.of.color[name], height, width/n.width, height/n.height) } } } dev.off() }
タイムスタンプを変更しない
COLOR(red){SIZE(20){カラーチャート}} 一番最後に,これを作ったソースを添付 #ref(colorchart01.png) #ref(colorchart02.png) #ref(colorchart03.png) #ref(colorchart04.png) #ref(colorchart05.png) #ref(colorchart06.png) #ref(colorchart07.png) #ref(colorchart08.png) #ref(colorchart09.png) *ソース polygon.plot <- function(row, col, name, name.of.color, height, cell.width, cell.height) { row <- row*cell.width col <- col*cell.height ordinate.x <- c(row, row, row+cell.width, row+cell.width, row) ordinate.y <- height-c(col, col+cell.height, col+cell.height, col, col) polygon(ordinate.x, ordinate.y, col=name.of.color) text(row+cell.width*0.1, height-(col+cell.height*0.6), name, pos=4) text(row+cell.width*0.1, height-(col+cell.height*0.4), name.of.color, pos=4) text(row+cell.width*0.1, height-(col+cell.height*0.2), name.of.color,pos=4,col="white") } color.chart <- function(n.width=8, n.height=10) { width <- 1200 height <- 900 name.of.color <- colors() n <- length(name.of.color) max <- floor(n/(n.width*n.height)) pdf("colorchart%02i.pdf", onefile=FALSE, width=width/72, height=height/72) for (i in 0:max) { plot(c(0, width, width, 0, 0), c(0, 0, height, height, 0),type="n", xaxt="n", yaxt="n", xlab="",ylab="") for (col in 0:(n.height-1)) { for (row in 0:(n.width-1)) { name <- (n.width*n.height)*i+col*n.width+row+1 cat(name, ", ", name.of.color[name], "¥n") polygon.plot(row, col, name, name.of.color[name], height, width/n.width, height/n.height) } } } dev.off() }
テキスト整形のルールを表示する
添付ファイル:
colorchart05.png
4124件
[
詳細
]
colorchart08.png
4438件
[
詳細
]
colorchart04.png
3958件
[
詳細
]
colorchart02.png
13250件
[
詳細
]
colorchart06.png
4384件
[
詳細
]
colorchart07.png
5234件
[
詳細
]
colorchart03.png
3940件
[
詳細
]
colorchart09.png
1579件
[
詳細
]
colorchart01.png
1793件
[
詳細
]