gpt4 book ai didi

r - 如何将分数表达式转换为 R 中的字符向量?

转载 作者:行者123 更新时间:2023-12-02 01:44:14 26 4
gpt4 key购买 nike

您好,感谢您的帮助。

我想使用 R 将表达式:x/y(例如 1298/1109)转换为字符向量:“x/y”(例如“1298/1109”)。

我已经尝试使用 as.character(x/y) 和 as.character.Date(x/y) 但这只会将分数的结果转换为字符向量。

最佳答案

你是这个意思吗?

> deparse(quote(1298 / 1109))
[1] "1298/1109"

> f <- function(x) deparse(substitute(x))

> f(1298 / 1109)
[1] "1298/1109"

关于r - 如何将分数表达式转换为 R 中的字符向量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71138867/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com