Skip to content

Commit 49f71fa

Browse files
haberdashPIpalday
andauthored
Use Released Intervals.jl (#9)
* Delete manifest files * Depends on released Intervals.jl * Fix Julia 1.6 compatibility Co-authored-by: Phillip Alday <[email protected]> Co-authored-by: Phillip Alday <[email protected]>
1 parent eb7df5f commit 49f71fa

File tree

6 files changed

+5
-558
lines changed

6 files changed

+5
-558
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Manifest.toml

Manifest.toml

Lines changed: 0 additions & 307 deletions
This file was deleted.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "DataFrameIntervals"
22
uuid = "33b79e07-adbe-4034-b8be-6bacde625d75"
33
authors = ["Beacon Biosignals, Inc."]
4-
version = "0.0.2"
4+
version = "0.1.0"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,14 @@
77
[![Docs: Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://beacon-biosignals.github.io/DataFrameIntervals.jl/dev)
88

99
DataFrameIntervals provides two functions that are handy for computing joins over intervals
10-
of time: `interval_join` and `groupby_interval_join`, and a helper function called `quantile_windows`.
10+
of time: `interval_join` and `groupby_interval_join`, and a helper function called `quantile_windows`. See their doc strings for details.
1111

1212
Rows match in this join if their time spans overlap. The time spans can be represented as
1313

1414
- [`TimeSpan`](https://juliapackages.com/p/timespans) objects
1515
- [`Interval`](https://juliapackages.com/p/intervals) objects.
1616
- `NamedTuples` with a `start` and `stop` field.
1717

18-
Currently this requires an unreleased version of `Intervals.jl` (which should be version 1.8 when released). If you don't use the manifest, make sure to add the following to your project before adding `DataFrameIntervals`.
19-
20-
```
21-
julia> ]add https://github.com/invenia/Intervals.jl#rf/intervalset-type
22-
```
23-
24-
2518
## Example
2619

2720
```julia

0 commit comments

Comments
 (0)