• 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ón95c71ad1353861725e95b21cdfc50843db826411 (tree)
Tiempo2025-01-15 02:13:46
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I added a comment.

Cambiar Resumen

Diferencia incremental

diff -r 86cbe77842db -r 95c71ad13538 R-codes/shiny_pointblank_input.R
--- a/R-codes/shiny_pointblank_input.R Tue Jan 14 18:10:49 2025 +0100
+++ b/R-codes/shiny_pointblank_input.R Tue Jan 14 18:13:46 2025 +0100
@@ -2,6 +2,17 @@
22 library(dplyr)
33 library(pointblank)
44
5+
6+## save
7+## data <- tibble(
8+## a = c(100, 150, 200, 105, 70),
9+## b = c(102, 148, 210, 110, 500)
10+## )
11+
12+## somewhere on your system as a csv file
13+
14+
15+
516 # Define the custom function in the global environment
617 equal_within <- function(x, y, percent) {
718 abs(x - y) / abs(pmin(x, y)) <= percent / 100