gpt4 book ai didi

r - 管道传输时到函数内控制台的消息顺序

转载 作者:行者123 更新时间:2023-12-04 07:27:49 25 4
gpt4 key购买 nike

编辑:我不是无礼的,所以只是没有接受我的问候..
你好,
为了跟踪某些函数的处理,我想在函数启动和完成时在控制台中打印消息。
我是 tidyverse 的忠实粉丝和管道运算符(operator) %>% .但我刚刚发现函数开头的消息以错误的顺序打印,而结尾的消息顺序正确。
有谁知道为什么或如何解决这个问题?
这是一些代码:

library(tidyverse)
testdata <- data.frame(a=c(3,5,7,1,2),b=c(2,5,6,3,9))

foo_1 <- function(DF){
message("Hello 1")
Obj <- DF %>%
mutate(Test_1=a*b)
message("Bye 1")
return(Obj)
}

foo_2 <- function(DF){
message("Hello 2")

Obj <- DF %>%
mutate(Test_2=Test_1*2)
message("Bye 2")
return(Obj)
}

foo_3 <- function(DF){
message("Hello 3")
Obj <- DF %>%
mutate(Test_3=Test_2/a)

message("Bye 3")
return(Obj)
}

testdata %>%
foo_1() %>%
foo_2() %>%
foo_3()
控制台打印的结果是:
Hello 3
Hello 2
Hello 1
Bye 1
Bye 2
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18
我期望的是以下消息顺序:
Hello 1
Bye 1
Hello 2
Bye 2
Hello 3
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18

最佳答案

1)flush.console 使用 flush.console 强制显示此时排队的消息。

testdata %>% 
foo_1() %>%
{ flush.console(); foo_2(.) } %>%
{ flush.console(); foo_3(.) }
给出这个输出:
Hello 1
Bye 1
Hello 2
Bye 2
Hello 3
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18
2) 异形管另一种方法是使用 Bizarro pipe ,这只是看起来像管道的聪明的基本语法。
testdata ->.;
foo_1(.) ->.;
foo_2(.) ->.;
foo_3(.)
给予:
Hello 1
Bye 1
Hello 2
Bye 2
Hello 3
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18
3) 力强制对三个函数中的参数进行评估。
foo_1 <- function(DF){
force(DF) #######
message("Hello 1")
Obj <- DF %>%
mutate(Test_1=a*b)
message("Bye 1")
return(Obj)
}

foo_2 <- function(DF){
force(DF) #######
message("Hello 2")
Obj <- DF %>%
mutate(Test_2=Test_1*2)
message("Bye 2")
return(Obj)
}

foo_3 <- function(DF){
force(DF) #######
message("Hello 3")
Obj <- DF %>%
mutate(Test_3=Test_2/a)

message("Bye 3")
return(Obj)
}

testdata %>%
foo_1 %>%
foo_2 %>%
foo_3
给予:
Hello 1
Bye 1
Hello 2
Bye 2
Hello 3
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18
4) pipe_eager_lexical magrittr 的开发者 Lionel 向我指出,magrittr 有一个急切的管道,但没有将它分配给 %..% 操作符;然而,我们可以很容易地做到这一点。
library(magrittr)

`%>e%` <- pipe_eager_lexical # eager pipe

testdata %>e%
foo_1() %>e%
foo_2() %>e%
foo_3()
给予:
Hello 1
Bye 1
Hello 2
Bye 2
Hello 3
Bye 3
a b Test_1 Test_2 Test_3
1 3 2 6 12 4
2 5 5 25 50 10
3 7 6 42 84 12
4 1 3 3 6 6
5 2 9 18 36 18

关于r - 管道传输时到函数内控制台的消息顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68131615/

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