Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions _freeze/posts/safeframe_v1.0.0/index/execute-results/html.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions posts/safeframe_v1.0.0/index.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
title: "safeframe v1.0.0"
author:
- name: "The Epiverse-TRACE development team"
date: "2025-06-30"
categories: [new-release]
code-link: true
---

<!-- markdownlint-disable-next-line -->
We are very excited to announce the first stable release of [safeframe](https://epiverse-trace.github.io/safeframe) (version v1.0.0).

```{r}
library(safeframe)
```

## safeframe 1.0.0

* First release of **safeframe**.
* Factors out the core functionality of **linelist** to make it more viable for alternative domains
* General usage remains the same:

```r
# Create a safeframe object
x <- make_safeframe(cars, mph = "speed", distance = "dist")

# Validate the tagged data are of a specific type
validate_safeframe(x,
mph = 'numeric', # speed should be numeric
# type() is a helper function of related classes
distance = type('numeric') # dist should be numeric, integer
)
```

## Acknowledgements

[&#x0040;avallecam](https://github.com/avallecam) [&#x0040;Bisaloo](https://github.com/Bisaloo) [&#x0040;chartgerink](https://github.com/chartgerink) [&#x0040;dependabot[bot]](https://github.com/dependabot[bot]) [&#x0040;joshwlambert](https://github.com/joshwlambert) [&#x0040;thibautjombart](https://github.com/thibautjombart) [&#x0040;TimTaylor](https://github.com/TimTaylor)
Loading