Skip to content

Proof of concept Jupyter Widget in xeusr

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

romainfrancois/wiipoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wiipoc

R-CMD-check

wiipoc is a proof of concept package for jupyter widgets in the xeus-r kernel

Installation

You can install the development version of wiipoc from GitHub with:

# install.packages("devtools")
devtools::install_github("romainfrancois/wiipoc")

Example

library(wiipoc)
x <- IntSlider()
x
style <- ButtonStyle(
    font_family = "Courrier New", 
    font_size = "15px", 
    font_variant = "small-caps", 
    font_weight = "bolder", 
    text_color = "red", 
    text_decoration = "underline"
)
b <- Button(style = style, description = "update slider", tooltip = "click the button to update the slider")
b$on_click(function(){
    x$value <- round(runif(1, min = 0, max = 100))
})
b
Screen.Recording.2025-03-11.at.10.52.52.mov
Demo

About

Proof of concept Jupyter Widget in xeusr

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages