fmt
किंवदंती वस्तुओं के अंतर से कोई लेना-देना नहीं है। fmt
कृपया विस्तृत विवरण के लिए, C- शैली स्ट्रिंग प्रारूपण कमांड का उपयोग करें देखें । R
मतभेदों को देखने के लिए अपने कंसोल में बस निम्नलिखित कोड स्निपेट चिपकाएँ (pi ~ 3.14):
sprintf("%f", pi)
sprintf("%.3f", pi)
sprintf("%1.0f", pi)
sprintf("%5.1f", pi)
sprintf("%05.1f", pi)
sprintf("%+f", pi)
sprintf("% f", pi)
sprintf("%-10f", pi) # left justified
sprintf("%e", pi)
sprintf("%E", pi)
sprintf("%g", pi)
sprintf("%g", 1e6 * pi) # -> exponential
sprintf("%.9g", 1e6 * pi) # -> "fixed"
sprintf("%G", 1e-6 * pi)
choro.legend()
legend()
आंतरिक रूप से कॉल करता है। पौराणिक वस्तुओं के बीच क्षैतिज अंतर को कम करने के लिए आपको फ़ंक्शन के text.width
पैरामीटर को बदलना चाहिए legend()
। दुर्भाग्य से बाहरी रूप से गणना choro.legend
करने के लिए एक पैरामीटर प्रदान नहीं करता है text.width
बल्कि आंतरिक रूप से गणना करता है। मैंने एक space_reduction
पैरामीटर जोड़ा choro.legend
और मूल फ़ंक्शन को इस प्रकार से थोड़ा संशोधित किया:
choro.legend <- function (px, py, sh, under = "under", over = "over", between = "to",
fmt = "%g", cex = 1, space_reduction = 0, ...)
{
x = sh$breaks
lx = length(x)
if (lx < 3)
stop("break vector too short")
res = character(lx + 1)
res[1] = paste(under, sprintf(fmt, x[1]))
for (i in 1:(lx - 1)) res[i + 1] <- paste(sprintf(fmt, x[i]),
between, sprintf(fmt, x[i + 1]))
res[lx + 1] <- paste(over, sprintf(fmt, x[lx]))
maxwidth <- max(strwidth(res)) - space_reduction
temp <- legend(x = px, y = py, legend = rep(" ", length(res)),
fill = sh$cols, text.width = maxwidth, cex = cex, ...)
text(temp$rect$left + temp$rect$w, temp$text$y, res, pos = 2,
cex = cex)
}
इस स्निपेट को R स्क्रिप्ट फ़ाइल में सहेजें और source
इसे। एक प्रतिलिपि प्रस्तुत करने योग्य कोड स्निपेट निम्नलिखित की तरह होगा:
library(GISTools)
data(newhaven)
blocks
val <- blocks@data$POP1990
shade <- auto.shading(val)
choropleth(blocks, v= val, shade)
choro.legend(514000, 175000,shade,title='My Legend',cex=.8, bty = "n", fmt = "%0.0f",
space_reduction=4000)
space_reduction
वांछित परिणाम प्राप्त करने के लिए धीरे-धीरे पैरामीटर को कम / बढ़ाएं ।