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
!114
Lineu180 - adiciona 8 tabelas do Neto
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Lineu180 - adiciona 8 tabelas do Neto
lineu180
into
devel
Overview
0
Commits
11
Pipelines
2
Changes
32
Merged
Lineu Alberto
requested to merge
lineu180
into
devel
8 years ago
Overview
0
Commits
11
Pipelines
2
Changes
32
Expand
Adiciona tabelas 2.2, 2.4, 2A.1, 2A.3, 2A.5, 3.3, 3.6 e o exercício 3.11 referente à issue
#180
0
0
Merge request reports
Compare
devel
version 1
bf502a19
8 years ago
devel (base)
and
latest version
latest version
990702a6
11 commits,
8 years ago
version 1
bf502a19
10 commits,
8 years ago
32 files
+
953
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
32
Search (e.g. *.vue) (Ctrl+P)
R/NetoEx3.11.R
0 → 100644
+
43
−
0
Options
#' @name NetoEx3.11
#' @title Síntese de Polipirrol
#' @description Como exercício num curso de quimioterapia, foram
#' analisados dados obtidos por um pesquisador numa série de
#' experimentos de síntese de polipirrol numa matriz de EPDM. O
#' plano fatorial é um \eqn{2^3} com duas repetições.
#' @format Um \code{data.frame} com 16 observações e 4 variáveis, em que
#'
#' \describe{
#'
#' \item{\code{t}}{Tempo da reação.}
#'
#' \item{\code{C}}{Concentração de oxidante.}
#'
#' \item{\code{P}}{Tamanho da partícula.}
#'
#' \item{\code{rend}}{Rendimento da reação (\%).}
#'
#' }
#' @keywords FAT2K
#' @source NETO et al. (2010), Exercício 3.11, pág. 126.
#' @examples
#'
#' data(NetoEx3.11)
#' str(NetoEx3.11)
#'
#' par(mfrow = c(1,3))
#' with(NetoEx3.11, {
#' interaction.plot(t, C, rend,
#' ylab = "Rendimento Médio",
#' main = "Tempo de Reação x Conc. de Oxidante",
#' col = "blue")
#' interaction.plot(t, P, rend,
#' ylab = "Rendimento Médio",
#' main = "Tempo de Reação x Tamanho da Partícula",
#' col = "green")
#' interaction.plot(C, P, rend,
#' ylab = "Rendimento Médio",
#' main = "Conc. de Oxidente x Tamanho da Partícula",
#' col = "red")
#' })
#'
NULL
Loading