Skip to content
View denisabd's full-sized avatar
Block or Report

Block or report denisabd

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. narrator narrator Public

    Template-based NLG framework for creating text narratives out of data and utilizing ChatGPT API to enhance the narratives created

    R 4

  2. pynarrator pynarrator Public

    Template-based NLG system for Python that uses gpt 3.5 turbo to improve narratives created

    JavaScript 2

  3. async_shiny async_shiny Public

    Async shiny modules - create scalable applications using modules that don't block the main session. Both cross-session and intra-session

    R 1

  4. R tidyverse useful tricks R tidyverse useful tricks
    1
    library(tidyverse)
    2
    
    
    3
    data <- tibble::tibble(
    4
      x = c(1, 2, NA, 2, NA), 
    5
      y = c("a", NA, "b", NA, "b"),
  5. RStudio Snippets RStudio Snippets
    1
    snippet shiny:module
    2
    	${1:name}UI <- function(id) {
    3
    	  ns <- NS(id)
    4
    	  tagList(
    5
    		${0}
  6. Async Progress Bar in R Shiny Async Progress Bar in R Shiny
    1
    library(shiny)
    2
    library(future)
    3
    library(promises)
    4
    
    
    5
    plan(multisession, workers = 4)