Skip to content

Commit 09f4fb8

Browse files
committed
Update badges and logos.
1 parent 7ce8070 commit 09f4fb8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1368
-892
lines changed

.DS_Store

6 KB
Binary file not shown.

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
genlogo.R
12
^Meta$
23
^doc$
34
#All packages
@@ -26,3 +27,4 @@
2627
^vignettes/[.]install_extras$
2728
^vignettes/.*_cache$
2829
^vignettes/.*_files$
30+
^\.github$

.github/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.html

.github/workflows/R-CMD-check.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
2+
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- master
8+
pull_request:
9+
branches:
10+
- main
11+
- master
12+
13+
name: R-CMD-check
14+
15+
jobs:
16+
R-CMD-check:
17+
runs-on: macOS-latest
18+
env:
19+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: r-lib/actions/setup-r@v1
23+
- name: Install dependencies
24+
run: |
25+
install.packages(c("remotes", "rcmdcheck"))
26+
remotes::install_deps(dependencies = TRUE)
27+
shell: Rscript {0}
28+
- name: Check
29+
run: |
30+
options(crayon.enabled = TRUE)
31+
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error")
32+
shell: Rscript {0}

README.Rmd

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
---
2-
output: github_document
3-
title: "Modélisation statistique par la pratique avec R"
4-
author: "Frédéric Bertrand, Emmanuel Claeys et Myriam Maumy-Bertrand"
5-
6-
---
7-
81
<!-- README.md is generated from README.Rmd. Please edit that file -->
92

103
```{r setup, include = FALSE}
@@ -17,10 +10,21 @@ knitr::opts_chunk$set(
1710
fig.keep="all"
1811
)
1912
```
20-
# ModStatR
13+
# ModStatR <img src="man/figures/logo.png" align="right" width="200"/>
14+
15+
# Modélisation statistique par la pratique avec R
16+
## Frédéric Bertrand, Emmanuel Claeys et Myriam Maumy-Bertrand
2117

18+
<!-- badges: start -->
19+
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-stable-green.svg)](https://www.tidyverse.org/lifecycle/#stable)
20+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
21+
[![R-CMD-check](https://github.com/fbertran/ModStatR/workflows/R-CMD-check/badge.svg)](https://github.com/fbertran/ModStatR/actions)
22+
[![Codecov test coverage](https://codecov.io/gh/fbertran/ModStatR/branch/master/graph/badge.svg)](https://codecov.io/gh/fbertran/ModStatR?branch=master)
2223
[![CRAN status](https://www.r-pkg.org/badges/version/ModStatR)](https://cran.r-project.org/package=ModStatR)
24+
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/ModStatR)](https://cran.r-project.org/package=ModStatR)
25+
[![GitHub Repo stars](https://img.shields.io/github/stars/fbertran/ModStatR?style=social)](https://github.com/github/fbertran/)
2326
[![DOI](https://zenodo.org/badge/204068588.svg)](https://zenodo.org/badge/latestdoi/204068588)
27+
<!-- badges: end -->
2428

2529
Le package ModStatR est un compagnon pour le livre [Modélisation statistique par la pratique avec R](https://www.dunod.com/sciences-techniques/modelisation-statistique-par-pratique-avec-r-cours-et-exercices-corriges).
2630

README.md

+36-34
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,62 @@
1-
Modélisation statistique par la pratique avec R
2-
================
3-
Frédéric Bertrand, Emmanuel Claeys et Myriam Maumy-Bertrand
4-
51
<!-- README.md is generated from README.Rmd. Please edit that file -->
62

7-
# ModStatR
83

9-
[![CRAN
10-
status](https://www.r-pkg.org/badges/version/ModStatR)](https://cran.r-project.org/package=ModStatR)
4+
# ModStatR <img src="man/figures/logo.png" align="right" width="200"/>
5+
6+
# Modélisation statistique par la pratique avec R
7+
## Frédéric Bertrand, Emmanuel Claeys et Myriam Maumy-Bertrand
8+
9+
<!-- badges: start -->
10+
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-stable-green.svg)](https://www.tidyverse.org/lifecycle/#stable)
11+
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
12+
[![R-CMD-check](https://github.com/fbertran/ModStatR/workflows/R-CMD-check/badge.svg)](https://github.com/fbertran/ModStatR/actions)
13+
[![Codecov test coverage](https://codecov.io/gh/fbertran/ModStatR/branch/master/graph/badge.svg)](https://codecov.io/gh/fbertran/ModStatR?branch=master)
14+
[![CRAN status](https://www.r-pkg.org/badges/version/ModStatR)](https://cran.r-project.org/package=ModStatR)
15+
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/ModStatR)](https://cran.r-project.org/package=ModStatR)
16+
[![GitHub Repo stars](https://img.shields.io/github/stars/fbertran/ModStatR?style=social)](https://github.com/github/fbertran/)
1117
[![DOI](https://zenodo.org/badge/204068588.svg)](https://zenodo.org/badge/latestdoi/204068588)
18+
<!-- badges: end -->
19+
20+
Le package ModStatR est un compagnon pour le livre [Modélisation statistique par la pratique avec R](https://www.dunod.com/sciences-techniques/modelisation-statistique-par-pratique-avec-r-cours-et-exercices-corriges).
1221

13-
Le package ModStatR est un compagnon pour le livre [Modélisation
14-
statistique par la pratique avec
15-
R](https://www.dunod.com/sciences-techniques/modelisation-statistique-par-pratique-avec-r-cours-et-exercices-corriges).
1622

17-
\[![ImageLivreModR](https://www.dunod.com/sites/default/files/styles/principal_desktop/public/thumbnails/image/9782100793525-001-X.jpeg)\]
23+
[![ImageLivreModR](https://www.dunod.com/sites/default/files/styles/principal_desktop/public/thumbnails/image/9782100793525-001-X.jpeg)]
1824

19-
Ce site et les exemples qui y sont reproduits ont été créés par F.
20-
Bertrand and M. Maumy-Bertrand.
25+
Ce site et les exemples qui y sont reproduits ont été créés par F. Bertrand and M. Maumy-Bertrand.
2126

2227
## Installation
2328

24-
Vous pouvez installer la dernière version du package ModStatR depuis le
25-
[CRAN](https://CRAN.R-project.org) with:
29+
Vous pouvez installer la dernière version du package ModStatR depuis le [CRAN](https://CRAN.R-project.org) with:
2630

27-
``` r
31+
32+
```r
2833
install.packages("ModStatR")
2934
```
3035

31-
Vous pouvez installer la dernière version du package ModStatR depuis le
32-
[github](https://github.com) with:
36+
Vous pouvez installer la dernière version du package ModStatR depuis le [github](https://github.com) with:
37+
3338

34-
``` r
39+
```r
3540
devtools::install_github("fbertran/ModStatR")
3641
```
3742

3843
## Code et résultats
3944

40-
- [Code et résultats du chapitre *1*](articles/Chapitre1.html)
41-
- [Code et résultats du chapitre *2*](articles/Chapitre2.html)
42-
- [Code et résultats du chapitre *3*](articles/Chapitre3.html)
43-
- [Code et résultats du chapitre *4*](articles/Chapitre4.html)
45+
* [Code et résultats du chapitre *1*](articles/Chapitre1.html)
46+
* [Code et résultats du chapitre *2*](articles/Chapitre2.html)
47+
* [Code et résultats du chapitre *3*](articles/Chapitre3.html)
48+
* [Code et résultats du chapitre *4*](articles/Chapitre4.html)
4449

45-
Les sorties et le code de chaque chapitre sont également accessibles à
46-
l’aide de l’onglet “Code du livre”.
50+
Les sorties et le code de chaque chapitre sont également accessibles à l'aide de l'onglet "Code du livre".
4751

4852
## Solutions des exercices
4953

50-
- [Code et résultats du chapitre *1*](articles/SolChapitre1.html)
51-
- [Code et résultats du chapitre *2*](articles/SolChapitre2.html)
52-
- [Code et résultats du chapitre *3*](articles/SolChapitre3.html)
53-
- [Code et résultats du chapitre *4*](articles/SolChapitre4.html)
54+
* [Code et résultats du chapitre *1*](articles/SolChapitre1.html)
55+
* [Code et résultats du chapitre *2*](articles/SolChapitre2.html)
56+
* [Code et résultats du chapitre *3*](articles/SolChapitre3.html)
57+
* [Code et résultats du chapitre *4*](articles/SolChapitre4.html)
58+
59+
Les solutions des exercices de chaque chapitre sont également accessibles à l'aide de l'onglet "Solutions des exercices".
5460

55-
Les solutions des exercices de chaque chapitre sont également
56-
accessibles à l’aide de l’onglet “Solutions des exercices”.
5761

58-
Le répertoire démo inclus dans le package contient le code de tous les
59-
chapitres du livre ainsi que le code des solutions de tous les exercices
60-
du livre. La fonction demo permet d’y accéder.
62+
Le répertoire démo inclus dans le package contient le code de tous les chapitres du livre ainsi que le code des solutions de tous les exercices du livre. La fonction demo permet d'y accéder.

docs/.DS_Store

12 KB
Binary file not shown.

docs/404.html

+30-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/apple-touch-icon-120x120.png

9.09 KB
Loading

docs/apple-touch-icon-152x152.png

11.9 KB
Loading

docs/apple-touch-icon-180x180.png

14.3 KB
Loading

docs/apple-touch-icon-60x60.png

4.29 KB
Loading

docs/apple-touch-icon-76x76.png

5.23 KB
Loading

docs/apple-touch-icon.png

14.3 KB
Loading

0 commit comments

Comments
 (0)