Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
labestData
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pet-estatistica
labestData
Merge requests
!122
Lineu181 - adiciona 8 tabelas do Neto
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Lineu181 - adiciona 8 tabelas do Neto
lineu181
into
devel
Overview
0
Commits
9
Pipelines
2
Changes
32
Merged
Lineu Alberto
requested to merge
lineu181
into
devel
8 years ago
Overview
0
Commits
9
Pipelines
2
Changes
32
Expand
Adiciona Tabalas 3A.1, 3A.2, 3A.3, 3A.4, 3A.5, 3A.6, 3A.7, 3A.8, 3A.9 referente à issue
#181
0
0
Merge request reports
Compare
devel
version 1
1c1c82f1
8 years ago
devel (base)
and
latest version
latest version
4d5e05bb
9 commits,
8 years ago
version 1
1c1c82f1
8 commits,
8 years ago
32 files
+
844
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
32
Search (e.g. *.vue) (Ctrl+P)
R/NetoTb3A.1.R
0 → 100644
+
36
−
0
Options
#' @name NetoTb3A.1
#' @title Efeito de Três Fatores no Grau de Subistituição numa Resina
#' @description Planejamento \eqn{2^3}, em duplicata, para estudar o
#' efeito de 3 fatores no grau de substituição numa resina
#' clorometilada.
#' @format Um \code{data.frame} com 16 observações e 4 variáveis, em que
#'
#' \describe{
#'
#' \item{\code{f1}}{Fator 1, tempo de hidrólise, em horas.}
#'
#' \item{\code{f2}}{Fator 2, temperatura da hidrólise, em grau celsius.}
#'
#' \item{\code{f3}}{Fator 3, tipo de catalisador: Acído trifluoracético
#' (-) e acído propiônico (+), ambos em HCl 12M.}
#'
#' \item{grau}{grau de substituição.}
#'
#' }
#' @keywords FAT2K
#' @source NETO et al. (2010), Tabela 3A.1, pág. 145.
#' @examples
#'
#' library(lattice)
#'
#' data(NetoTb3A.1)
#' str(NetoTb3A.1)
#'
#' ftable(xtabs(~f1 + f2 + f3, data = NetoTb3A.1))
#'
#' xyplot(grau ~ f1 | f2, groups = f3, data = NetoTb3A.1,
#' type = c("p", "a"), auto.key = TRUE,
#' xlab = "Tempo de Hidrólise",
#' ylab = "Grau de Substituição")
#'
NULL
Loading