• 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

Revisión28bcbffebffb12a27461129f1b92dd7ad4155df9 (tree)
Tiempo2024-09-23 15:46:24
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I added a small function to convert a string to an integer.

Cambiar Resumen

Diferencia incremental

diff -r 2aeecd2bac13 -r 28bcbffebffb R-codes/stat_lib.R
--- a/R-codes/stat_lib.R Tue Sep 17 21:08:05 2024 +0200
+++ b/R-codes/stat_lib.R Mon Sep 23 08:46:24 2024 +0200
@@ -7650,3 +7650,13 @@
76507650 return(FALSE)
76517651 }
76527652 }
7653+
7654+
7655+name_to_integer <- function(name){
7656+ res <- utf8ToInt(name) |>
7657+ sum()
7658+
7659+ return(res)
7660+}
7661+
7662+