如何使用jqPagination-jquery,pagination

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用jqPagination-jquery,pagination相关的知识,希望对你有一定的参考价值。

参考技术A <div class="some-container">
<p>My first paragraph</p>
<p>My second paragraph</p>
<p>My third paragraph</p>
</div>

<div class="pagination">
<a href="#" class="first" data-action="first">«</a>
<a href="#" class="previous" data-action="previous">‹</a>
<input type="text" readonly="readonly" />
<a href="#" class="next" data-action="next">›</a>
<a href="#" class="last" data-action="last">»</a>
</div>本回答被提问者和网友采纳

如何使用 stat_cor() 函数将大写字母 P 的 p 值传递给 ggplot 对象?

【中文标题】如何使用 stat_cor() 函数将大写字母 P 的 p 值传递给 ggplot 对象?【英文标题】:How to p-value with uppercase letter P to a ggplot object by using stat_cor() function? 【发布时间】:2021-12-27 15:35:09 【问题描述】:

我创建了一个散点图并尝试在其上添加 R 和 P 值。我使用了 ggpubr 包的stat_cor() 函数。该函数允许您使用大写或小写的 R 系数,但我找不到 p 值的选项。有没有办法把p值的字母p写成大写?

【问题讨论】:

【参考方案1】:

一种选择是使用计算变量自己创建标签(请参阅stat_cor 返回的?stat_cor 并将p 替换为P 使用例如gsub

使用来自?stat_cor的默认示例:

library(ggpubr)
#> Loading required package: ggplot2

df <- mtcars
df$cyl <- as.factor(df$cyl)

sp <- ggscatter(df, x = "wt", y = "mpg",
                add = "reg.line",  # Add regressin line
                add.params = list(color = "blue", fill = "lightgray"), # Customize reg. line
                conf.int = TRUE # Add confidence interval
)
sp + stat_cor(aes(label = paste(..rr.label.., gsub("p", "P", ..p.label..), sep = "~`,`~")),
  label.x = 3
)
#> `geom_smooth()` using formula 'y ~ x'

【讨论】:

以上是关于如何使用jqPagination-jquery,pagination的主要内容,如果未能解决你的问题,请参考以下文章

如何使用“p-waterfall”TypeScript 类型

如何使用JavaScript在p:treeTable上触发行编辑器

如何使用 stat_cor() 函数将大写字母 P 的 p 值传递给 ggplot 对象?

如何使用多个 JOIN 加速 SQL 查询?

如何使用 p-listbox 过滤多个标签?

如何使用终端将 .p12 文件转换为 .pem 文件?