R/data-cpu.R

#'  CPU's Released between 2010 and 2020.
#'
#'  Data on computer processors released between 2010 and 2020.
#'
#'
#' @format A data frame with 875 rows and 12 variables.
#' \describe{
#'   \item{company}{Manufacturer of the CPU.}
#'   \item{name}{Model name of the processor.}
#'   \item{codename}{Name given by manufacturer to all chips with this architecture.}
#'   \item{cores}{Number of compute cores per processor.}
#'   \item{threads}{The number of \emph{threads} represents the number of simultaneous calculations that can be ongoing in the processor.}
#'   \item{base_clock}{Base speed for the CPU in GHz.}
#'   \item{boost_clock}{Single-core max speed for the CPU in GHz.}
#'   \item{socket}{Specifies the type of connection to the motherboard.}
#'   \item{process}{Size of the process node used in production in nm.}
#'   \item{l3_cache}{Size of the level 3 cache on the processor in MB.}
#'   \item{tdp}{Total draw power of the processor.}
#'   \item{released}{Date which the processor was released to the public.}
#' }
#' @examples
#' boxplot(base_clock~company, data = cpu, main="CPU Base Speed",
#'   xlab = "Company", ylab = "Base Clock (GHz)")
#'
#' plot(cpu$process, cpu$boost_clock, main="Process Node Size V Boost Speed",
#'   xlab = "Process node size (nm)", ylab = "Boost Clock (GHz)")
#'
#' @source
#'   \href{https://www.techpowerup.com/cpu-specs/?released=2019&sort=name}{TechPowerUp CPU Database}
#'
#'
"cpu"
tessington/qsci381 documentation built on Sept. 26, 2020, 12:40 p.m.