Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9d4305e

Browse files
Merge pull request#11 from InseeFr/adaptation_after_transfer_to_inseefr
Adaptation after transfer to inseefr
2 parentsee16dfa +f3479d2 commit9d4305e

File tree

5 files changed

+30
-19
lines changed

5 files changed

+30
-19
lines changed

‎.Rbuildignore‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@
1212
^.gitlab-ci.script$
1313
^R-CMD-check.sh$
1414
^doc$
15-
^.github$
15+
^.github$
16+
^\.github$

‎DESCRIPTION‎

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ Type: Package
33
Title: A User-Oriented Statistical Toolkit for Analytical Variance Estimation
44
Depends: R(>= 3.2.5)
55
Imports: methods, utils, stats, Matrix
6-
Suggests: testthat, covr, sampling, magrittr, tibble, dplyr, data.table
7-
Version: 0.4.5
8-
Authors@R: person("Martin", "Chevalier", role = c("aut", "cre", "cph"), email = "mc@slmc.fr")
9-
Author: Martin Chevalier [aut, cre, cph]
10-
Maintainer: Martin Chevalier <mc@slmc.fr>
11-
URL: https://github.com/martinchevalier/gustave
12-
BugReports: https://github.com/martinchevalier/gustave/issues
6+
Suggests: testthat, sampling, magrittr, tibble, dplyr, data.table
7+
Version: 1.0.0
8+
Authors@R: c(
9+
person("Martin", "Chevalier", role = "aut", email = "mc@slmc.fr", comment = "Creator"),
10+
person("Khaled", "Larbi", role = "cre", email = "khaled.larbi@insee.fr"),
11+
person("Institut national de la statistique et des études économiques", role = "cph")
12+
)
13+
URL: https://github.com/InseeFr/gustave
14+
BugReports: https://github.com/InseeFr/gustave/issues
1315
Description: Provides a toolkit for analytical variance estimation in survey sampling. Apart from the implementation of standard variance estimators, its main feature is to help the sampling expert produce easy-to-use variance estimation "wrappers", where systematic operations (linearization, domain estimation) are handled in a consistent and transparent way.
1416
License: GPL-3
1517
Collate: 'data.R' 'utils.R' 'define_variance_wrapper.R' 'variance_function.R' 'define_statistic_wrapper.R' 'standard_statistic_wrapper.R' 'qvar.R'

‎NEWS.md‎

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
#1.0.0
2+
3+
- The package is considered stable enough to be used in production
4+
- New maintainer
5+
16
#0.4.5
27

38
- Bugfix: additional outputs are indeed passed on to a custom display function (Issue#13 raised by@Dmitrilbr, Bugfix in PR#14)

‎README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gustave[![R-CMD-check](https://github.com/martinchevalier/gustave/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/martinchevalier/gustave/actions/workflows/R-CMD-check.yaml)[![CRAN_Status](http://www.r-pkg.org/badges/version/gustave)](https://cran.r-project.org/package=gustave)[![Mentioned in Awesome Official Statistics](https://awesome.re/mentioned-badge.svg)](https://github.com/SNStatComp/awesome-official-statistics-software)
1+
gustave[![R-CMD-check](https://github.com/InseeFr/gustave/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/InseeFr/gustave/actions/workflows/R-CMD-check.yaml)[![CRAN_Status](http://www.r-pkg.org/badges/version/gustave)](https://cran.r-project.org/package=gustave)[![Mentioned in Awesome Official Statistics](https://awesome.re/mentioned-badge.svg)](https://github.com/SNStatComp/awesome-official-statistics-software)
22
=======
33

44
Gustave (Gustave: a User-oriented Statistical Toolkit for Analytical Variance Estimation) is an R package that provides a**toolkit for analytical variance estimation in survey sampling**.
@@ -163,6 +163,6 @@ The variance estimation *wrapper* is much easier-to-use than a standard variance
163163
164164
## Colophon
165165
166-
This software is an [R](https://cran.r-project.org/) package developed with the [RStudio IDE](https://www.rstudio.com/) and the [devtools](https://CRAN.R-project.org/package=devtools), [roxygen2](https://CRAN.R-project.org/package=roxygen2) and [testthat](https://CRAN.R-project.org/package=testthat) packages. Much help was found in [R packages](https://r-pkgs.org/) and [Advanced R](https://adv-r.hadley.nz/) both written by [Hadley Wickham](https://hadley.nz/).
166+
This software is an [R](https://cran.r-project.org/) package developed with the [RStudio IDE](https://www.posit.co/) and the [devtools](https://CRAN.R-project.org/package=devtools), [roxygen2](https://CRAN.R-project.org/package=roxygen2) and [testthat](https://CRAN.R-project.org/package=testthat) packages. Much help was found in [R packages](https://r-pkgs.org/) and [Advanced R](https://adv-r.hadley.nz/) both written by [Hadley Wickham](https://hadley.nz/).
167167
168168
From the methodological point of view, this package is related to the [Poulpe SAS macro (in French)](http://jms-insee.fr/jms1998_programme/#1513415199356-a8a1bdde-becd) developed at the French statistical institute. From the implementation point of view, some inspiration was found in the [ggplot2](https://CRAN.R-project.org/package=ggplot2) package. The idea of developing an R package on this specific topic was stimulated by the [icarus](https://CRAN.R-project.org/package=icarus) package and its author.

‎cran-comments.md‎

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11
#Round 1
22

33
##Test environments
4-
* Linux Mint : R-release
5-
* win-builder: R-oldrelease, R-release and R-devel
4+
* Linux Ubuntu: R-oldrelease, R-release and R-devel
5+
* Windows: R-oldrelease, R-release and R-devel
6+
* MacOS: R-release
67

78
##R CMD check results
89

9-
1 NOTE on R-oldrelease :
10-
Possibly mis-spelled words in DESCRIPTION:
11-
Analytical (3:48)
12-
analytical (14:37)
13-
14-
Analytical is nonetheless spelled correctly :https://www.oxfordlearnersdictionaries.com/definition/english/analytical
10+
*1 NOTE :
1511

16-
There were no ERRORs nor WARNINGs.
12+
Maintainer: ‘Khaled Larbi <khaled.larbi@insee.fr>’
13+
14+
New maintainer:
15+
Khaled Larbi <khaled.larbi@insee.fr>
16+
Old maintainer(s):
17+
Martin Chevalier<mc@slmc.fr>
18+
19+
E-mail sent frommc@slmc.fr toCRAN-submissions@R-project.org on XXX.
1720

1821
##Reverse dependencies
1922

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp