
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
23 lines
1.0 KiB
Python
23 lines
1.0 KiB
Python
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class RSurvey(RPackage):
|
|
"""Summary statistics, two-sample tests, rank tests, generalised linear
|
|
models, cumulative link models, Cox models, loglinear models, and general
|
|
maximum pseudolikelihood estimation for multistage stratified,
|
|
cluster-sampled, unequally weighted survey samples. Variances by Taylor
|
|
series linearisation or replicate weights. Post-stratification,
|
|
calibration, and raking. Two-phase subsampling designs. Graphics. PPS
|
|
sampling without replacement. Principal components, factor analysis."""
|
|
|
|
homepage = "http://r-survey.r-forge.r-project.org/survey/"
|
|
url = "https://cran.r-project.org/src/contrib/survey_3.30-3.tar.gz"
|
|
list_url = "https://cran.r-project.org/src/contrib/Archive/survey"
|
|
|
|
version('3.30-3', 'c70cdae9cb43d35abddd11173d64cad0')
|