Skip to content

Pacote R para disponibilização de conjuntos de dados característicos da área agronômica

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md
Notifications You must be signed in to change notification settings

NEPEM-UFSC/agrodata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

agrodata

Lifecycle: experimental

The goal of agrodata is to provide dataset examples for statistical analysis.

Installation

You can install the development version of agrodata from GitHub with:

# install.packages("pak")
pak::pak("NEPEM-UFSC/agrodata")

Example

library(agrodata)
library(ggplot2)
df <- ad_normal()


ggplot(df, aes(length)) +
  geom_histogram(aes(y = after_stat(..density..)),
                 bins = 60) +
  labs(x = "Length of the grain (mm)",
       y = "Density",
       title = "Distribution of the length of 86,436 flax grains",
       subtitle = "The red line represents the theoretical normal distribution") +
  stat_function(fun = dnorm,
                geom = "line",
                col = "red",
                linewidth = 1,
                args = list(
                  mean = mean(df$length),
                  sd = sd(df$length)
                ))

About

Pacote R para disponibilização de conjuntos de dados característicos da área agronômica

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages