- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下数据框
DGChi <- structure(list(Sucrose = c(42, 40, 15, 19, 33, 49, 35, 31, 22,
25, 37, 28, 31, 41, 27, 28, 33, 43, 21, 37, 14, 41, 30, 34, 38,
40, 40, 33, 33), Fructose = c(27, 29, 41, 35, 29, 23, 27, 33,
38, 38, 28, 31, 29, 26, 32, 34, 31, 28, 40, 30, 39, 27, 32, 31,
29, 28, 28, 32, 29), Glucose = c(31, 31, 44, 46, 38, 28, 38,
36, 40, 37, 35, 41, 40, 33, 41, 38, 36, 30, 39, 33, 47, 32, 38,
35, 33, 32, 32, 35, 38), Sindrome = c("Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily", "Chiropterophily",
"Chiropterophily", "Chiropterophily", "Chiropterophily")), .Names = c("Sucrose",
"Fructose", "Glucose", "Sindrome"), row.names = c(NA, -29L), class = c("tbl_df",
"tbl", "data.frame"))
我正在尝试制作一个三元图并在点周围添加一个凸包,我的第一次尝试是使用 ggalt 包的 geom_encircle:
library(ggtern)
library(ggalt)
ggtern(data = DGChi, aes(x = Fructose, y = Sucrose, z = Glucose, fill = Sindrome)) +
theme_bw() +
geom_encircle(alpha=0.2,size=1, spread = 0.5) +
geom_point() +
theme(legend.position="bottom")
有了这个结果
包围点,但不是凸包
正在尝试关注 my own answer for rgl ,我试过这个:
library(geometry)
DGChiMin <- as.data.frame(convhulln(matrix(c(DGChi$Fructose, DGChi$Sucrose, DGChi$Glucose), ncol = 3)))
colnames(DGChiMin) <- c("Fructose", "Sucrose", "Glucose")
然后是剧情:
ggtern(data = DGChi, aes(x = Fructose, y = Sucrose, z = Glucose)) +
theme_bw() +
geom_polygon(data = DGChiMin,aes(x = Fructose, y = Sucrose, z = Glucose)) +
geom_point() +
theme(legend.position="bottom")
但是得到了这个 super 奇怪的多边形:
谁能帮我得到凸包图?
最佳答案
认为您会发现 geom_encircle 内部使用了 chull。将扩展参数设置为 0。
library(ggalt)
library(ggtern)
ggtern(data = DGChi, aes(x = Fructose, y = Sucrose, z = Glucose, fill = Sindrome)) +
theme_bw() +
geom_encircle(alpha=0.2,size=1, expand=0) + ##<<<<<< expand = 0
geom_point() +
theme(legend.position="bottom")
关于r - 在 R 中使用 ggtern 的三元图的凸包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45923511/
我想知道javascript中if的简码是什么? 就像在 PHP 中一样: $res = ($x > $y)? $x: $y; 它在 JavaScript 中的转换是什么? 最佳答案 在 javasc
请问为什么下面的代码会报错? 错误: numberOne > numberTwo ? return "true" : return "false"; ^
在我的代码中,我检查系统函数是否等于零,如果是我返回另一个值,如果不是,我返回测试值。 (class.verylongfunc(arg, arg) == 0) ? othervar : cla
在 PHP 中,有没有一种方法可以使用三元条件连接两个字符串? 当我尝试这样做时,我得到的只是 else 而不是所需的 something else。 最佳答案 像这样把整个三元运算符放在方括号中:
似乎在三元运算符中存在某种类型混淆。我知道这已在其他 SO 线程中得到解决,但它始终与可空值有关。另外,就我而言,我真的只是在寻找更好的方法。 我希望能够使用 proc.Parameters[PARA
有没有办法在不进行赋值或伪造赋值的情况下进行 java 三元运算? 我喜欢在执行一堆 if/then/else 时的简洁三元代码。 我希望能够基于 boolean 代数语句调用两个 void 函数之一
我正在使用 XSLT 和 XML 来生成输出文档。 我在数据中拥有的(以我无法控制的 XML 形式)如下: 4 我需要在计算中使用这些。我看到为这些提供默认值需要对文档执行转换以提供一个有点冗长的
这个问题已经有答案了: Ternary operators in JavaScript without an "else" (13 个回答) 已关闭 4 年前。 我一直使用这样的三元表达式,但我不喜欢
我在 VB.NET 中发现了一个可以轻松重现的简单错误: Dim pDate As Date? Dim pString As String = "" ' works fine as expected
所以,我有这段代码,它实际上有效: (散列将是这样的对象:{"bob"=> "12, "Roger"=> "15", etc},并且 isGood(key) 是调用函数 isGood ,如果玩家好或坏
是否有以下 JavaScript bool 三元表达式的简写语法: var foo = (expression) ? true : false 最佳答案 当然,您只想将表达式转换为 bool 值: v
在 Java 中,如果我在常规 if 中使用三元 if 运算符,例如: if ((x > y - z) ? true : callLongWaitedMethod(many, parameteres)
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 7 年前。 Improve
var test = "Hello World!"; 在 Java 10+ 中,上面的代码片段可以编译,test 在编译时被推断为 String。 但是,我们可以使用条件(三元)运算符来返回不同的类型
嗨,我尝试在渲染内部使用三元条件,但遇到一些错误,这是我的代码: render() { return ( (this.emai
这里我有以下 JavaScript 代码,带有两个值。 var w = $("#id1").val(); var h = $("#id2").val(); (w == h) ? (w=350 , h
我一直想知道如何用 C++ 兼容语言编写 "A ? B : C" 语法。 我认为它的工作方式类似于:(伪代码) If A > B C = A Else C = B 有没有经验丰富的 C++
考虑两个 vector ,A 和 B,大小为 n,7 <= n <= 23 . A 和B 都只包含-1、0 和1。 我需要一个计算A 和B 内积的快速算法。 到目前为止,我一直在考虑使用以下编码将
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
如果您一开始就讨厌三元条件运算符,则无需回复 ;) 我经常看到它与赋值表达式一起使用,例如: var foo = (some_condition) ? then_code : else_code; 但
我是一名优秀的程序员,十分优秀!