Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.9%) to scientific vocabulary
Keywords
Repository
Define aliases for R expressions
Basic Info
- Host: GitHub
- Owner: klmr
- License: mit
- Language: R
- Default Branch: main
- Homepage: https://klmr.me/aka/
- Size: 1.17 MB
Statistics
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 1
- Releases: 0
Topics
Metadata Files
README.md
aka 
aka::alias() allows creating aliases for other R names or
arbitrarily complex R expressions. Accessing the alias acts as-if the
aliased expression were invoked instead, and continuously reflects the
current value of that expression: updates to the original expression
will be reflected in the alias; and updates to the alias will
automatically be reflected in the original expression.
Installation
aka is on CRAN; install it via:
r
install.packages('aka')
You can also install the development version of aka from GitHub:
r
pak::pak('klmr/aka')
Example
The simplest case aliases another name:
r
library(aka)
r
x = 'hello'
alias(ax = x)
ax
## [1] "hello"
r
x = 'world'
ax
## [1] "world"
r
ax = 'goodbye'
x
## [1] "goodbye"
As we can see, updates to the original names are reflected in the alias, and updates to the alias are reflected in the original name.
As an alternative syntax, we can use an “assignment-like” form:
r
ax := x
This form is strictly equivalent to alias(ax = x).
Furthermore, aliases can be created for complex expressions:
r
mercedes := mtcars[grep('^Merc ', rownames(mtcars)), ]
mercedes
| | mpg | cyl | disp | hp | drat | wt | qsec | vs | am | gear | carb | |:------------|-----:|----:|------:|----:|-----:|-----:|-----:|----:|----:|-----:|-----:| | Merc 240D | 24.4 | 4 | 146.7 | 62 | 3.69 | 3.19 | 20.0 | 1 | 0 | 4 | 2 | | Merc 230 | 22.8 | 4 | 140.8 | 95 | 3.92 | 3.15 | 22.9 | 1 | 0 | 4 | 2 | | Merc 280 | 19.2 | 6 | 167.6 | 123 | 3.92 | 3.44 | 18.3 | 1 | 0 | 4 | 4 | | Merc 280C | 17.8 | 6 | 167.6 | 123 | 3.92 | 3.44 | 18.9 | 1 | 0 | 4 | 4 | | Merc 450SE | 16.4 | 8 | 275.8 | 180 | 3.07 | 4.07 | 17.4 | 0 | 0 | 3 | 3 | | Merc 450SL | 17.3 | 8 | 275.8 | 180 | 3.07 | 3.73 | 17.6 | 0 | 0 | 3 | 3 | | Merc 450SLC | 15.2 | 8 | 275.8 | 180 | 3.07 | 3.78 | 18.0 | 0 | 0 | 3 | 3 |
… and we can even update parts of an aliased expression to modify parts of the original, underlying objects:
``` r
Set all Mercedes engine types to V-shaped
mercedes$vs = 0
mtcars[8 : 14, 'vs', drop = FALSE] ```
| | vs | |:------------|----:| | Merc 240D | 0 | | Merc 230 | 0 | | Merc 280 | 0 | | Merc 280C | 0 | | Merc 450SE | 0 | | Merc 450SL | 0 | | Merc 450SLC | 0 |
However, be careful when assigning to an alias of an object in a parent environment:
``` r e = attach(new.env()) e$y = 'hello'
alias(ay = y) ```
This will seem to work:
r
ay
## [1] "hello"
… because y is found in the attached parent environment after it was
not found in the current scope; however, the following will create a
new variable y in the current scope, and leave e$y untouched:
r
ay = 'world'
e$y
## [1] "hello"
r
y
## [1] "world"
To prevent this: pass env_expr when defining the alias:
r
alias(ay = y, expr_env = e)
Why?!
aka implements an approach to reactive programming that is complementary to Shiny’s reactive programming API. Superficially, the mechanism resembles references in C++. However, under the hood they are fundamentally different. In particular, aka aliases are currently implemented as active bindings, whereas C++ references are direct aliases that are either replaced with the actual value by the compiler or converted to pointers.
This package purely provides syntactic sugar for active bindings, it
does not add any functionality over manually calling
makeActiveBinding() (the aliases created by
aka are active bindings). It is also
superficially similar to the
pointr
package. Unlike the latter, the API of aka uses
proper R expressions instead of being stringly
typed, and its usage and
implementation are conceptually more straightforward and idiomatic. To
allow programming on the language, aka supports
bquote()’s macro interpolation syntax rather than requiring string
manipulation. It also allows explicitly controlling the evaluating and
defining environments of the alias.
Truth be told, for now I have not yet identified a compelling use-case for this package; it mainly exists to explore the concepts, and to provide a playground. Another purpose is to act as a tutorial for the implementation of a simple but powerful non-standard evaluation API. If you’ve found an interesting use-case, please reach out: I am genuinely curious!
Owner
- Name: Konrad Rudolph
- Login: klmr
- Kind: user
- Location: Basel, CH
- Company: @Roche
- Website: http://klmr.me
- Repositories: 117
- Profile: https://github.com/klmr
Geneticist 🧬, computer scientist 𝝺 and software engineer 👨💻.
GitHub Events
Total
- Issues event: 1
- Watch event: 3
- Issue comment event: 1
- Push event: 6
Last Year
- Issues event: 1
- Watch event: 3
- Issue comment event: 1
- Push event: 6
Packages
- Total packages: 1
-
Total downloads:
- cran 265 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: aka
Define Aliases for R Expressions
- Homepage: https://klmr.me/aka/
- Documentation: http://cran.r-project.org/web/packages/aka/aka.pdf
- License: MIT + file LICENSE
-
Latest release: 0.2.0
published 9 months ago
Rankings
Maintainers (1)
Dependencies
- JamesIves/github-pages-deploy-action v4.5.0 composite
- actions/checkout v4 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-renv v2 composite
- testthat * suggests