Skip to content

Instantly share code, notes, and snippets.

View j-dominguez9's full-sized avatar
👾

Joaquin Dominguez j-dominguez9

👾
View GitHub Profile
@j-dominguez9
j-dominguez9 / app.py
Last active July 31, 2022 18:19
Clusters
from shiny import ui, render, App
import pandas as pd
import seaborn as sns
choices = {"a": "Age", "b": "Income", "c": "Hours Worked", "d": "Education", "e": "Race", "f": "Marital Status", "g": "Gender", "h": "Work Class"}
app_ui = ui.page_fluid(
ui.h2({"style": "text-align: center;"}, "Cluster Analysis"),
ui.layout_sidebar(
@j-dominguez9
j-dominguez9 / gist:16591fe89684e2344e73e7d6179307c2
Last active February 6, 2022 01:10
cars dataset cleaning
---
title: "Untitled"
author: "Joaquin Dominguez"
date: "2/4/2022"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```