Skip to content

Commit b9865bf

Browse files
Fix CRAN issues
1 parent 063c4da commit b9865bf

File tree

5 files changed

+51
-6
lines changed

5 files changed

+51
-6
lines changed

.Rbuildignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
^\.github$
99
.lintr
1010
^cran-comments\.md$
11+
^CRAN-SUBMISSION$

CRAN-SUBMISSION

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Version: 0.1.0
2+
Date: 2025-08-25 20:06:03 UTC
3+
SHA: 063c4da6e0537c91125523f301dc7672c5762b53

DESCRIPTION

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
Package: econtools
2-
Title: Tools to Analyze Economic Data
2+
Title: Enrich and Analyze Sovereign-Level Economic Data
33
Version: 0.1.0
44
Authors@R: c(
55
person("Christoph", "Scheuch", , "[email protected]",
66
role = c("aut", "cre", "cph"),
77
comment = c(ORCID = "0009-0004-0423-6819"))
88
)
9-
Description: A collection of tools to facilitate the analysis of economic data.
9+
Description: Provides a consistent set of functions for enriching and analyzing
10+
sovereign-level economic data. Economists, data scientists, and financial
11+
professionals can use the package to add standardized identifiers,
12+
demographic and macroeconomic indicators, and derived metrics such as
13+
gross domestic product per capita or government expenditure shares.
1014
License: MIT + file LICENSE
1115
Encoding: UTF-8
1216
Roxygen: list(markdown = TRUE)

README.Rmd

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ knitr::opts_chunk$set(
2121
[![Codecov test coverage](https://codecov.io/gh/tidy-intelligence/econtools/graph/badge.svg)](https://app.codecov.io/gh/tidy-intelligence/econtools)
2222
<!-- badges: end -->
2323

24-
The goal of econtools is to provide tools for analyzing economic data similar to the Python [bblocks](https://github.com/ONEcampaign/bblocks/tree/main) package.
24+
Provides a consistent set of functions for enriching and analyzing sovereign-level economic data. Economists, data scientists, and financial professionals can use the package to add standardized identifiers, demographic and macroeconomic indicators, and derived metrics such as gross domestic product per capita or government expenditure shares.
2525

2626
The package is part of the [EconDataverse](https://www.econdataverse.org/) family of packages aimed at helping economists and financial professionals work with sovereign-level economic data.
2727

@@ -128,3 +128,20 @@ And share of government expenditure to GDP:
128128
```{r}
129129
add_gov_exp_share_column(df, id_column = "id", date_column = "year")
130130
```
131+
132+
## Contributing
133+
134+
Contributions to `econtools` are welcome! If you’d like to contribute,
135+
please follow these steps:
136+
137+
1. **Create an issue**: Before making changes, create an issue
138+
describing the bug or feature you’re addressing.
139+
2. **Fork the repository**: After receiving supportive feedback from
140+
the package authors, fork the repository to your GitHub account.
141+
3. **Create a branch**: Create a branch for your changes with a
142+
descriptive name.
143+
4. **Make your changes**: Implement your bug fix or feature.
144+
5. **Test your changes**: Run tests to ensure your changes don’t break
145+
existing functionality.
146+
6. **Submit a pull request**: Push your changes to your fork and submit
147+
a pull request to the main repository.

README.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ Check](https://github.com/tidy-intelligence/econtools/actions/workflows/R-CMD-ch
1212
coverage](https://codecov.io/gh/tidy-intelligence/econtools/graph/badge.svg)](https://app.codecov.io/gh/tidy-intelligence/econtools)
1313
<!-- badges: end -->
1414

15-
The goal of econtools is to provide tools for analyzing economic data
16-
similar to the Python
17-
[bblocks](https://github.com/ONEcampaign/bblocks/tree/main) package.
15+
Provides a consistent set of functions for enriching and analyzing
16+
sovereign-level economic data. Economists, data scientists, and
17+
financial professionals can use the package to add standardized
18+
identifiers, demographic and macroeconomic indicators, and derived
19+
metrics such as gross domestic product per capita or government
20+
expenditure shares.
1821

1922
The package is part of the
2023
[EconDataverse](https://www.econdataverse.org/) family of packages aimed
@@ -210,3 +213,20 @@ add_gov_exp_share_column(df, id_column = "id", date_column = "year")
210213
#> 4 USA USA 2022 2.60e+13 0.36829
211214
#> 5 USA United States 2023 2.77e+13 0.37113
212215
```
216+
217+
## Contributing
218+
219+
Contributions to `econtools` are welcome! If you’d like to contribute,
220+
please follow these steps:
221+
222+
1. **Create an issue**: Before making changes, create an issue
223+
describing the bug or feature you’re addressing.
224+
2. **Fork the repository**: After receiving supportive feedback from
225+
the package authors, fork the repository to your GitHub account.
226+
3. **Create a branch**: Create a branch for your changes with a
227+
descriptive name.
228+
4. **Make your changes**: Implement your bug fix or feature.
229+
5. **Test your changes**: Run tests to ensure your changes don’t break
230+
existing functionality.
231+
6. **Submit a pull request**: Push your changes to your fork and submit
232+
a pull request to the main repository.

0 commit comments

Comments
 (0)