आपके पास gridBase
पैकेज का उपयोग करके ऐसा कुछ हो सकता है। हम rose.diag
का उपयोग करते रहते हैं और हम hack
साजिश का उपयोग करते हैं, एक बार जब हम अच्छे व्यूपोर्ट के स्थान पर होते हैं।

require(grid)
#grid.newpage()
##generate some data
x <- circular(runif(50, 0, 2*pi))
bins <- 8
rotation <- 'clock'
##tcl =0(no ticks), tcl.text=-2 to write away the ticks marks
rose.diag(x, bins=bins,zero=0, rotation='clock',
tcl=0,tcl.text=-2,col='#80FF00FF')
library(gridBase)
## I use the plot viewport
vp <- baseViewports()$plot
pushViewport(vp) ## here we go!
## radial transformation
at <- (0:bins - 0.5)/bins * 2 * pi
## ticks
grid.segments(x0 = .95*sin(at), y0 = 0.95*cos(at),
x1 = 1.05*sin(at), y1 = 1.05*cos(at),
default.units = "native")
## ticks labels
grid.text(x = 1.1*sin(at), default.units = "native",
y = 1.1*cos(at), gp=gpar(col='red'),
label = c("N", "NE", "E", "SE", "S", "SW", "W", "NW"))
मैं कुछ ट्यूनिंग जोड़ने दृश्य पहलू के लिए, लेकिन सवाल का पहले से ही इस सवाल का जवाब ऊपर कुछ कोड।
## dashed lines from the center for visual aspect
grid.segments(x0 = .95*sin(at), y0 = 0.95*cos(at),
x1 = 0, 0,
gp = gpar(lty="dashed"),
default.units = "native")
## circle just to get the same color of text
grid.circle(r=1,x=0,y=0,gp=gpar(col='red',fill=NA,lwd=2), default.units = "native")
## remove the viewport
popViewport(1)
मुझे नहीं लगता कि इस स्रोत कोड हैकिंग के बिना संभव है के लिए इस तरह के आंकड़ों का उपयोग कर रहे हैं उत्सुक के लिए
पुनश्च: कोड के नीचे आप पुराने आंकड़ा (बाएं ऊपर) देता है। मुझे लगता है कि कुछ बिंदु पर ऐसा करना याद है, लेकिन कोड को खोदना होगा ... –
@BenBolker स्रोत कोड हैकिंग के बिना संभव है लेकिन साजिश हैकिंग के साथ :) – agstudy