尝试使用包bty = "n"
中的set.seed(1)
x=1:10
y=runif(10)
plot(x, y, lwd = 3, col = "black", bg = "green", pch = 21, cex = 2)
arrows(x, y-0.05, x, y+0.05, lwd = 3, col = "green", angle = 90, code = 3)
legend("topright",
col="green",
lwd = 3,
lty = 1,
legend = "text",
cex = 2,
bg = NA)
legend("topright",
col = "black",
pt.bg = "green",
pch = 21,
lwd = 3,
legend = "text",
cex = 2,
lty = 0,
bty = "n")
函数时,我收到以下错误。
例如,请参阅以下命令:
install_git
请注意:我承认我可以在这个精确的案例中使用devtools
。我实际上是尝试使用install_git("https://github.com/rstudio/shiny.git")
Installation failed: 'head' is not an exported object from 'namespace:git2r'
从我的组织中的私有Git存储库安装软件包(但由于机密性问题,我无法将URL放在此处,而且它在里面一个内联网,所以它无论如何都不会工作。)
问题是,虽然install_github("rstudio/shiny")
有效,但install_git
却没有。我浏览了一些解决方案,但我能找到的最多的是几个包有命名空间依赖性的问题,例如:
R - 'data' is not an exported object from 'namespace:my_package'
R Markdown Error: 'is_latex_output' is not an exported object from 'namespace:knitr'
'setInternet2' is not an exported object from 'namespace-utils' in R
这些都没有提供我可以根据我的情况推断的解决方案, 所以任何帮助都将受到高度赞赏。 非常感谢你。
install_github