Skip to content

Commit

Permalink
fix %<% to %>%
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Geller committed Jan 27, 2025
1 parent fefab2e commit f1ed547
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _manuscript/L2_VWP_webcam_ET.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -803,8 +803,8 @@ oob_data_L2 <- gaze_oob(edat_L2)
#| echo: false
oob_data_L2 %>%
mutate(across(where(is.numeric), !round(.x, 2))) %<%
head() %<%
mutate(across(where(is.numeric), !round(.x, 2))) %>%
head() %>%
tt(width=.9) %>%
format_tt(escape=TRUE)
```
Expand Down Expand Up @@ -1105,7 +1105,7 @@ gaze_sub_L2 <- webgazeR::downsample_gaze(gaze_sub_L2_long, bin.length=100, timev
#| echo: false
gaze_sub_L2 %>%
mutate(across(where(is.numeric), ~round(.x, 2))) %<%
mutate(across(where(is.numeric), ~round(.x, 2))) %>%
head() %>%
tt() %>%
format_tt(escape=TRUE)
Expand Down

0 comments on commit f1ed547

Please sign in to comment.