我有一个简单的数据表,其中有一列 record_id 数字。我想添加一个额外的列来创建一个 url,其中包含 url 中的 record_id。
我尝试使用 library(urltools) 包,但无法弄清楚如何为特定行传递 record_id。由于要更改的值在 url 内,因此 url 也有点复杂。
https://website/DataEntry/index.php?pid=27716&id=[this is where record_id needs to be]&page=something&event_id=348187&instance=1
我正在考虑做一些类似 mutate 的事情,但无法弄清楚 = 符号之后会发生什么。