gpt4 book ai didi

r - 如何从R中的字符串中提取特定数字

转载 作者:行者123 更新时间:2023-12-02 08:02:25 25 4
gpt4 key购买 nike

我的数据是这样的:x = when,ch_d_mean,< , 29.55我想从 x 中提取 29.55。

x = 'when,ch_d_mean,< , 29.55'

我想要值 29.55

最佳答案

这是一个基本的 R 选项:

x <- "when,ch_d_mean,< , 29.55"
regmatches(x, gregexpr("\\d+(?:\\.\\d+)?", x))[[1]]

[1] "29.55"

请注意,对于捕获输入字符串中任意数量的数字,此方法非常稳健。

关于r - 如何从R中的字符串中提取特定数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55672029/

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