Skip to content
Snippets Groups Projects
Select Git revision
  • fc8a8e20c48e0f8f700e5411924a4a72a9f0f66b
  • development default protected
  • treinamento-2025
  • cursos-superior
  • doc_agregado_ies
  • micro_dados_2021
  • escola-agregada-teste
  • homologa protected
  • master protected
  • v1.0.41
10 results

docente_ens_superior.csv

Blame
  • plowing.R 723 B
    ##----------------------------------------------------------------------
    ## Data generation.
    
    plowing <- read.table("http://www.leg.ufpr.br/~walmes/data/pimentel_aradura.txt",
                          header=TRUE, sep="\t")
    names(plowing) <- c("plow", "block", "yield")
    levels(plowing$plow) <- c("normal", "deep")
    str(plowing)
    
    plowing <- plowing[with(plowing, order(block, plow)),]
    
    save(plowing, file="../data/plowing.RData")
    
    ##----------------------------------------------------------------------
    ## Examples.
    
    require(lattice)
    
    xyplot(yield~plow|block, data=plowing, type=c("p", "a"),
           ylab=expression(Yield~(t~ha^{-1})),
           xlab="Plowing level")
    
    rm(list=ls())
    load("../data/plowing.RData")
    ls()
    str(plowing)