R语言 在ggplot中为矩阵添加数学符号

f8rj6qna  于 2023-09-27  发布在  其他
关注(0)|答案(3)|浏览(136)

我想知道是否有一种方法可以写出矩阵的表达式,例如矩阵2乘2矩阵,并将其显示在图中,就像我在下面的等式中所做的那样:$Y_{ij} = 3+2.5t_{ij} +\epsilon_{ij}$在R.

  1. curve(dnorm, from = -3, to = 3, n = 1000, main = "Normal Probability Density Function")
  2. text(-2, 0.3, expression(f(x) == paste(frac(1, sqrt(2 * pi * sigma^2)),
  3. " ", e^{
  4. frac(-(x - mu)^2, 2 * sigma^2)
  5. })), cex = 1.2)
  6. ggplot() +
  7. ggtitle(expression(paste(Y[ij] == beta[0]+beta[1]*t[ij] + b[0][i] + epsilon[ij])))
z3yyvxxp

z3yyvxxp1#

要在R图形中包含一些LaTeX代码,请使用tikzDevice包。这里有一个例子。我做了一个函数,方便使用tikzDevice

  1. library(tikzDevice)
  2. #' @title Function to use 'tikzDevice'
  3. #' @param fplot a function without argument which generates a graphic
  4. #' @param filename filename without extension
  5. #' @param outdir output directory
  6. #' @param overwrite whether to overwrite the existing file if there is one
  7. #' @param compile whether to compile the LaTeX file
  8. #' @param format the format of the compiled file: \code{"pdf"}, \code{"ps"}
  9. #' or \code{"eps"}
  10. #' @param lua whether to compile with LuaLaTeX, for \code{format="pdf"} only
  11. #' @param clean argument passed to \code{tools::texi2dvi}; see there
  12. #' @param ... arguments passed to \code{tikz}, such as
  13. #' \code{packages="\\usepackage{amsysymb}"}
  14. plot2tikz <- function(
  15. fplot, filename = "Rplot", outdir = getwd(), overwrite = FALSE,
  16. compile = TRUE, format = "pdf", lua = FALSE, clean = FALSE, ...) {
  17. options(tikzMetricsDictionary='.tikzMetrics')
  18. format <- match.arg(format, choices = c("pdf", "ps", "eps"))
  19. texfile <- paste0(filename, ".tex")
  20. owd <- setwd(outdir); on.exit(setwd(owd))
  21. if(!overwrite && file.exists(texfile)) {
  22. stop("The LaTeX file already exists.")
  23. }
  24. # run the tikz device
  25. tikzargs <- list(...)
  26. tikzargs[["packages"]] <-
  27. paste0(
  28. # "\n\\usepackage[utf8]{inputenc}",
  29. "\n\\usepackage{tikz}",
  30. "\n\\usetikzlibrary{calc}",
  31. # "\n\\usepackage[active,tightpage,psfixbb]{preview}",
  32. # "\n\\PreviewEnvironment{pgfpicture}",
  33. # "\n\\setlength\\PreviewBorder{10pt}",
  34. "\n\\usepackage{amsmath}",
  35. tikzargs[["packages"]]
  36. )
  37. f <- function(...) {
  38. tikz(
  39. texfile,
  40. standAlone = TRUE,
  41. onefile = TRUE,
  42. documentDeclaration = "\\documentclass[tikz]{standalone}\n",
  43. ...
  44. )
  45. fplot()
  46. dev.off()
  47. }
  48. do.call(f, tikzargs)
  49. # compilation
  50. if(compile){
  51. message("Compilation...")
  52. if(format == "pdf") {
  53. # pdf compilation
  54. pdffile <- paste0(filename, ".pdf")
  55. if(!overwrite && file.exists(pdffile)) {
  56. stop("The PDF file already exists.")
  57. }
  58. if(lua) {
  59. command <- sprintf("lualatex %s", texfile)
  60. system(command)
  61. } else {
  62. tools::texi2dvi(texfile, pdf = TRUE, clean = clean)
  63. }
  64. message(sprintf("Output pdf file: %s", pdffile))
  65. } else if(format %in% c("ps", "eps")) {
  66. psfile <- paste0(filename, ".ps")
  67. if(!overwrite && file.exists(psfile)) {
  68. stop("The PS file already exists.")
  69. }
  70. tools::texi2dvi(texfile, pdf = FALSE, clean = clean)
  71. command <- sprintf("dvips %s.dvi", filename)
  72. system(command)
  73. message(sprintf("Output PS file: %s", psfile))
  74. if(format == "eps") {
  75. command <- sprintf("ps2epsi %s.ps %s.epi", filename, filename)
  76. system(command)
  77. file.rename(sprintf("%s.epi", filename), sprintf("%s.eps", filename))
  78. message(sprintf("Output EPS file: %s.eps", filename))
  79. }
  80. }
  81. }
  82. #
  83. message(sprintf(
  84. "Output TEX file: %s",
  85. normalizePath(texfile, winslash = .Platform$file.sep)
  86. ))
  87. invisible(NULL)
  88. }
  89. # example ####
  90. library(ggplot2)
  91. # make a plot with some LaTeX code
  92. x <- rnorm(n = 100, mean = 10, sd = 10)
  93. alpha <- 2.0
  94. beta <- 1.5
  95. gamm <- 10
  96. err <- rnorm(n=100, mean=0, sd = 0.25)
  97. f_x <- alpha / (1 + exp(-1 * beta * (x - gamm))) + err
  98. dat <- data.frame(x=x, y=f_x)
  99. LaTeX <- "\\Large$\\begin{pmatrix} 1 & 2 \\\\ 3 & 4 \\end{pmatrix}$"
  100. gg <- ggplot(data = dat, aes(x = x, y = y)) +
  101. geom_smooth(method = "loess") +
  102. geom_point() +
  103. geom_text(aes(x = 15, y = 1, label = LaTeX)) +
  104. theme_classic()
  105. # tikz it!
  106. fplot <- function() {
  107. print(gg)
  108. }
  109. plot2tikz(
  110. fplot, overwrite = TRUE, compile = TRUE, format = "pdf",
  111. width = 5, height = 5
  112. )

展开查看全部
whitzsjs

whitzsjs2#

这是一个基本情节的努力。没有矩阵plotmath工具,但您可以使用atop和超大“管道”(|)字符创建一个(或者如果您希望拥有超大弧形围栏,只需选择开括号和闭括号)

  1. plot(1,1,col="transparent")
  2. text(1.2, 0.8, expression( atop(1~2~3,4~5~6) ) )
  3. text(1.15, .8, labels="|",cex=3 ) #Need to figure out what the coords should be
  4. text(1.25, .8, labels="|",cex=3 ) and adjust the other side's big-pipe

hgqdbh6s

hgqdbh6s3#

您可以使用gridExtra::tableGrob()绘制一个矩阵,它与ggplot2兼容(grid由ggplot2在后台使用)。使用patchwork软件包,您可以将矩阵与ggplot2图结合起来。

  1. library(patchwork)
  2. library(ggplot2)
  3. library(grid)
  4. library(gridExtra)
  5. matrix_grob <- tableGrob(matrix(1:4, 2, 2))
  6. grid.newpage()
  7. grid.draw(matrix_grob)

  1. plot1 <- ggplot(mtcars, aes(cyl)) + geom_bar()
  2. plot1 + matrix_grob

使用grid::grid.arrange()可以实现许多布局:

  1. grid.arrange(
  2. grid.arrange(
  3. textGrob("This is a plot title and to the right is a matrix"),
  4. matrix_grob,
  5. ncol = 2,
  6. widths = c(3, 1),
  7. heights = 1
  8. ),
  9. plot1,
  10. heights = c(1, 3),
  11. widths = 1
  12. )

展开查看全部

相关问题