This file contains 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
<!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" /> |
This file contains 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
<!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" /> |
This file contains 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
<!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" /> |
This file contains 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
#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) |