如何对tif的图的位置进行调整
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何对tif的图的位置进行调整相关的知识,希望对你有一定的参考价值。
参考技术A 具体的步骤如下:1.tif文件一般是高像素的栅格图片文件,不能直接导出shp这种格式的矢量文件。
2.假如真要将tif文件显示的内容变为shp文件,一般是将栅格图片先根据坐标系配准好位置,再新建shp文件。
3.之后根据栅格图手动描绘成shp文件,即可给tif栅格文件转换坐标了。
如何编辑此代码生成的图的图例?
【中文标题】如何编辑此代码生成的图的图例?【英文标题】:How can I edit the legend for the plot generated by this code? 【发布时间】:2021-05-02 02:40:37 【问题描述】:library(arules)
library(arulesViz)
library(RColorBrewer)
trans = read.transactions("https://raw.githubusercontent.com/tempAcccc/temRepo/main/TempFile.csv",format="basket", sep = ",",cols = c(1))
rule1 <- apriori(trans, parameter = list(support = 0.004,conf=0.05,target="rules"))
plot(rule1, measure=c("support", "confidence"),shading="order",col = brewer.pal(4,"Spectral"),main="Rules with Min_sup=0.004 and Min_conf=0.05")
此代码生成。 我想将它说顺序的部分更改为“迭代”我该怎么做?
【问题讨论】:
如果您包含一个简单的reproducible example 以及可用于测试和验证可能的解决方案的示例输入,则更容易为您提供帮助。 @MrFlick 我已添加数据框,以便您重现结果。 如果您使用基础 R 之外的函数,您应该命名所需的包。另外,对我来说,read.transactions()
不适用于从环境中读取 DF。我必须直接从源代码读取文件。我在你的帖子中编辑了这两个。虽然arulesViz
的文档说In addition to using order for shading, we also give the plot a different title (main). Othercontrol options includingpch(best with filled symbols: 20–25),cex,xlimandylimareavailable and work in the usual way expected by R-users.
,但在我看来,更改图例标签是不可能的。
【参考方案1】:
默认图中的图例是固定的,不能更改。您可以使用 ggplot2 作为引擎(需要最新版本的arulesViz
)。这样您就可以使用所有 ggplot 函数来覆盖绘图的部分内容。这是一个例子
library(ggplot2)
plot(rule1, measure=c("support", "confidence"), shading="order", engine = "ggplot") +
ggtitle("Rules with Min_sup=0.004 and Min_conf=0.05") +
labs(color = "Rule length") +
scale_color_discrete(type = brewer.pal(4,"Spectral"))
【讨论】:
以上是关于如何对tif的图的位置进行调整的主要内容,如果未能解决你的问题,请参考以下文章