-
Notifications
You must be signed in to change notification settings - Fork 2
/
DESCRIPTION
36 lines (36 loc) · 1.19 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Package: fracture
Title: Convert Decimals to Fractions
Version: 0.2.1
Authors@R:
person(given = "Alexander",
family = "Rossell Hayes",
role = c("aut", "cre", "cph"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-9412-0457"))
Description: Provides functions for converting decimals to a
matrix of numerators and denominators or a character vector of
fractions. Supports mixed or improper fractions, finding common
denominators for vectors of fractions, limiting denominators to powers
of ten, and limiting denominators to a maximum value. Also includes
helper functions for finding the least common multiple and greatest
common divisor for a vector of integers. Implemented using C++ for
maximum speed.
License: MIT + file LICENSE
URL: https://fracture.rossellhayes.com/,
https://github.com/rossellhayes/fracture
BugReports: https://github.com/rossellhayes/fracture/issues
Depends:
R (>= 2.10)
Imports:
Rcpp
Suggests:
covr,
testthat (>= 3.0.0),
withr
LinkingTo:
Rcpp
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.0
SystemRequirements: C++11
Config/testthat/edition: 3