Skip to content

Instantly share code, notes, and snippets.

View myoshimu's full-sized avatar

Miki Katsuragi myoshimu

  • Google
  • Tokyo
  • 13:55 (UTC -12:00)
  • X @myoshimu
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myoshimu
myoshimu / bqml_kmeans_ga360.ipynb
Last active December 4, 2019 08:46
bqml_kmeans_ga360
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myoshimu
myoshimu / bqml_cycle_kmeans_with_tuning.ipynb
Created July 11, 2019 08:27
bqml_cycle_kmeans_with_tuning
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@myoshimu
myoshimu / bqml_cycle_kmeans_with_tuning.ipynb
Last active July 12, 2019 04:20
bqml_cycle_kmeans_with_tuning
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
library(shiny)
#パッケージに例として入っている
#01_helloというアプリケーションを起動
#runExample("01_hello")
#サーバーサイドのコード
server <- function(input, output) {
output$distPlot <- renderPlot({
x <- rnorm(input$obs)
hist(x, col='darkgray', border='white')