如何在 R 中调整/控制树状图中的比例(使用“portfolio”库)?
我正在使用 R 和“portfolio”库来构建树形图。比例默认为“-1000 到 1000”。
例如,我需要它是“0到1000”。我知道 map.market() 有一个“scale”参数,但我不知道要传递给它什么。
I am using R and the 'portfolio' library to build a treemap. The scale is defaulting to '-1000 to 1000'.
I need it to be '0 to 1000', for example. I know there is a 'scale' parameter to map.market(), but I can't figure out what to pass to it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
零附近的对称颜色映射被硬编码到
map.market
中:并且,
请注意
seq(-1,1,...)
语句的存在。scale
参数仅影响绝对大小。A symmetric colour-mapping around zero is hard coded into
map.market
:and,
Note the presence of
seq(-1,1,...)
statements. Thescale
parameter only affects the absolute size.