-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add winequality data set, fix windows support
- Loading branch information
1 parent
e02c041
commit 27f4092
Showing
9 changed files
with
74 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
/data/ | ||
*.DS_Store | ||
*.Rhistory | ||
*.Rdata | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Package: sgd | ||
Type: Package | ||
Title: Stochastic Gradient Descent for Scalable Estimation | ||
Version: 1.0 | ||
Version: 1.1 | ||
Authors@R: c( | ||
person("Dustin", "Tran", email = "[email protected].edu", role = c("aut", "cre")), | ||
person("Dustin", "Tran", email = "[email protected].edu", role = c("aut", "cre")), | ||
person("Panos", "Toulis", role = "aut"), | ||
person("Tian", "Lian", role = "ctb"), | ||
person("Ye", "Kuang", role = "ctb"), | ||
person("Edoardo", "Airoldi", role = "ctb") | ||
) | ||
Maintainer: Dustin Tran <[email protected].edu> | ||
Maintainer: Dustin Tran <[email protected].edu> | ||
Description: A fast and flexible set of tools for large scale estimation. It | ||
features many stochastic gradient methods, built-in models, visualization | ||
tools, automated hyperparameter tuning, model checking, interval estimation, | ||
|
@@ -27,6 +27,7 @@ Imports: | |
MASS, | ||
methods, | ||
Rcpp (>= 0.11.3) | ||
LazyData: yes | ||
LinkingTo: | ||
BH, | ||
bigmemory, | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#' Wine quality data of white wine samples from Portugal | ||
#' | ||
#' This dataset is a collection of white "Vinho Verde" wine | ||
#' samples from the north of Portugal. Due to privacy and logistic | ||
#' issues, only physicochemical (inputs) and sensory (the output) | ||
#' variables are available (e.g. there is no data about grape types, | ||
#' wine brand, wine selling price, etc.). | ||
#' | ||
#' @format A data frame with 4898 rows and 12 variables | ||
#' \itemize{ | ||
#' \item fixed acidity. | ||
#' \item volatile acidity. | ||
#' \item citric acid. | ||
#' \item residual sugar. | ||
#' \item chlorides. | ||
#' \item free sulfur dioxide. | ||
#' \item total sulfur dioxide. | ||
#' \item density. | ||
#' \item pH. | ||
#' \item sulphates. | ||
#' \item alcohol. | ||
#' \item quality (score between 0 and 10). | ||
#' } | ||
#' @source \url{https://archive.ics.uci.edu/ml/datasets/Wine+Quality} | ||
"winequality" |
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
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/data-winequality.R | ||
\docType{data} | ||
\name{winequality} | ||
\alias{winequality} | ||
\title{Wine quality data of white wine samples from Portugal} | ||
\format{A data frame with 4898 rows and 12 variables | ||
\itemize{ | ||
\item fixed acidity. | ||
\item volatile acidity. | ||
\item citric acid. | ||
\item residual sugar. | ||
\item chlorides. | ||
\item free sulfur dioxide. | ||
\item total sulfur dioxide. | ||
\item density. | ||
\item pH. | ||
\item sulphates. | ||
\item alcohol. | ||
\item quality (score between 0 and 10). | ||
}} | ||
\source{ | ||
\url{https://archive.ics.uci.edu/ml/datasets/Wine+Quality} | ||
} | ||
\usage{ | ||
winequality | ||
} | ||
\description{ | ||
This dataset is a collection of white "Vinho Verde" wine | ||
samples from the north of Portugal. Due to privacy and logistic | ||
issues, only physicochemical (inputs) and sensory (the output) | ||
variables are available (e.g. there is no data about grape types, | ||
wine brand, wine selling price, etc.). | ||
} | ||
\keyword{datasets} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
|
||
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) | ||
PKG_CPPFLAGS = -I. |
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