Skip to content

Instantly share code, notes, and snippets.

View tanho63's full-sized avatar
🏈

Tan Ho tanho63

🏈
View GitHub Profile
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print(pi)
#> [1] 3.141593
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
``` r
print("pie")
#> [1] "pie"
```
<sup>Created on 2025-09-19 with [reprex v2.1.1](https://reprex.tidyverse.org)</sup>
@tanho63
tanho63 / ggplot-data-pronoun-shiny.R
Created February 28, 2025 16:19
ggplot .data pronoun shiny
library(shiny)
library(ggplot2)
ui <- fluidPage(
selectInput("var", choices = names(mtcars),label = "choose column"),
br(),
plotOutput("plot")
)
server <- function(input, output, session) {
output$plot <- renderPlot({
@tanho63
tanho63 / encounters.csv
Created May 12, 2024 04:22
pokemon modern emerald romhack encounters.json parsing
base_label map_label is_modern day_night encounter_type fishing_rod species encounter_rate
gRoute101 gRoute101 FALSE Day land_mons NA Wurmple 45
gRoute101 gRoute101 FALSE Day land_mons NA Poochyena 45
gRoute101 gRoute101 FALSE Day land_mons NA Zigzagoon 10
gRoute101_Night gRoute101 FALSE Night land_mons NA Wurmple 65
gRoute101_Night gRoute101 FALSE Night land_mons NA Poochyena 35
gRoute101_DayC gRoute101 TRUE Day land_mons NA Wurmple 35
gRoute101_DayC gRoute101 TRUE Day land_mons NA Zigzagoon 30
gRoute101_DayC gRoute101 TRUE Day land_mons NA Caterpie 10
gRoute101_DayC gRoute101 TRUE Day land_mons NA Poochyena 14