This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(MASS) | |
| library(tidyverse) | |
| waiting <- geyser$waiting | |
| n <- length(waiting) | |
| print(n) | |
| m <- 16 | |
| a <- min(waiting) | |
| b <- max(waiting) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(MASS) | |
| waiting <- geyser$waiting | |
| n <- length(waiting) | |
| print(n) | |
| m <- 3 | |
| a <- min(waiting) | |
| b <- max(waiting) | |
| h <- 7.27037 | |
| delta <- h / m |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(MASS) | |
| waiting <- geyser$waiting | |
| n <- length(waiting) | |
| m <- 14 | |
| a <- min(waiting) | |
| b <- max(waiting) | |
| h <- 7.27037 | |
| delta <- h / m | |
| # get the bin counts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################################################## | |
| library(tidyverse) | |
| library(tidymodels) | |
| library(lightgbm) | |
| library(janitor) | |
| library(skimr) | |
| library(bonsai) | |
| library(baguette) | |
| library(doParallel) | |
| train_df <- read_csv("train.csv") |> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(tidymodels) | |
| library(lightgbm) | |
| library(janitor) | |
| library(skimr) | |
| library(bonsai) | |
| library(baguette) | |
| library(doParallel) | |
| library(darknerdthemes) | |
| train_df <- read_csv("train.csv") |> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return { | |
| "folke/neodev.nvim", -- setting up nvim things | |
| "folke/which-key.nvim", -- hints for keys | |
| "sainnhe/everforest", -- everforest theme | |
| "phaazon/hop.nvim", -- nvim motions | |
| "nvim-lualine/lualine.nvim", -- lualine status bar | |
| "kyazdani42/nvim-web-devicons", -- pretty icons | |
| "lewis6991/gitsigns.nvim", -- git changes on side bar | |
| "nvim-tree/nvim-tree.lua", -- file tree | |
| "hkupty/iron.nvim", -- R and Python repl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------- | |
| -- xvzf neovim configuration | |
| -- neovim website: https://neovim.io/ | |
| -- version: | |
| ------------------------------------------------- | |
| ------------------------------------------------- | |
| -- general settings | |
| ------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ffmpeg \ | |
| -video_size $(xdpyinfo | grep dimensions | awk '{print $2;}') \ | |
| -framerate 25 \ | |
| -f x11grab \ | |
| -i :1.0 \ | |
| output.mkv | |
| # https://trac.ffmpeg.org/wiki/Capture/Desktop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from manim import * | |
| from scipy.stats import uniform, beta, norm, cauchy | |
| import numpy as np | |
| black_color = '#292c35' | |
| black = "#292c35" | |
| red = "#ee1d52" | |
| yellow = "#f2d803" | |
| blue = "#63a3be" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(ftplottools) | |
| library(ggplot2) | |
| library(ggtext) | |
| theme_gruv <- function(){ | |
| title_text_color <- "#ebdbb2" | |
| other_text_color <- "#ebdbb2" | |
| grid_line_color <- "#ebdbb2" | |
| panel_background <- "#32302f" | |
| font_family <- "SauceCode Pro Nerd Font" |
NewerOlder