• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisiond6a24162a4a01b2a71dbe58f032fbb2bfb607db9 (tree)
Time2021-12-07 18:34:32
AuthorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I slightly modified the get_dupes_short function.

Change Summary

Incremental Difference

diff -r 17cef7835d8c -r d6a24162a4a0 R-codes/stat_lib.R
--- a/R-codes/stat_lib.R Fri Dec 03 16:29:43 2021 +0100
+++ b/R-codes/stat_lib.R Tue Dec 07 10:34:32 2021 +0100
@@ -4766,11 +4766,11 @@
47664766
47674767
47684768
4769-get_dupes_short <- function(df){
4769+get_dupes_short <- function(df, ...){
47704770 require(janitor)
47714771
47724772 res <- df %>%
4773- get_dupes() %>%
4773+ get_dupes(...) %>%
47744774 distinct()
47754775
47764776 return(res)