• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javaandroidc++linuxc#windowsobjective-ccocoaqtpython誰得phprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión52b84a5840f60cfc5bdeca04b72c55fa4d7543f1 (tree)
Tiempo2023-01-27 02:51:10
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I added a function to remove a character or a pattern from a string.

Cambiar Resumen

Diferencia incremental

diff -r 9e054c5bf4de -r 52b84a5840f6 R-codes/stat_lib.R
--- a/R-codes/stat_lib.R Wed Jan 25 10:34:46 2023 +0100
+++ b/R-codes/stat_lib.R Thu Jan 26 18:51:10 2023 +0100
@@ -7045,3 +7045,11 @@
70457045 x)
70467046 }
70477047
7048+
7049+remove_char <- function(x, pattern){
7050+
7051+ res <- str_replace_all(x, pattern, "")
7052+
7053+ return(res)
7054+
7055+}