Skip to content

Instantly share code, notes, and snippets.

View paulina-grunwald's full-sized avatar

Paulina Grunwald paulina-grunwald

View GitHub Profile
@paulina-grunwald
paulina-grunwald / index.html
Last active February 26, 2017 20:53
Survival chances of the Titanic's passangers
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Titanic Data Exploration</title>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.3.0.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>
<link href="style.css" rel="stylesheet" />
@paulina-grunwald
paulina-grunwald / index.html
Created February 26, 2017 20:56
Survival chances of the Titanic's passangers
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Titanic Data Exploration</title>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.3.0.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>
<link href="style.css" rel="stylesheet" />
@paulina-grunwald
paulina-grunwald / index.html
Created March 5, 2017 16:13
Survival chances of the Titanic's passangers
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Titanic Data Exploration</title>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="http://dimplejs.org/dist/dimple.v2.3.0.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>
<link href="style.css" rel="stylesheet" />
@paulina-grunwald
paulina-grunwald / stargaze_stat_table.R
Created January 5, 2017 20:34
Creating summary statistics using stargazer package
#Load necessary packages
library(stargazer)
library(readr)
#Load cvs file from url
df_ww <- read.csv("https://raw.githubusercontent.com/paulina-grunwald/R-HackRoom/master/Creating%20summary%20statistics%20using%20stargazer%20package/wineQualityWhites.csv")
#Create summary statistics using stargazer package
df_stat <- data.frame(df_ww)