Skip to content

Commit caa19d0

Browse files
authored
#241 Merge pull request from deshima-dev/astropenguin/issue240
Add stats module for chunked statistics
2 parents b2e1aa4 + ff69239 commit caa19d0

7 files changed

Lines changed: 1077 additions & 24 deletions

File tree

CITATION.cff

Lines changed: 35 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
1-
cff-version: 1.2.0
2-
message: "If you use this software, please cite it as below."
1+
# This CITATION.cff file was generated with cffinit.
2+
# Visit https://bit.ly/cffinit to generate yours today!
33

4-
title: "de:code"
5-
abstract: "DESHIMA code for data analysis"
6-
version: 2025.4.2
7-
date-released: 2025-04-17
8-
license: "MIT"
9-
doi: "10.5281/zenodo.3384216"
10-
url: "https://github.com/deshima-dev/decode"
4+
cff-version: 1.2.0
5+
title: decode
6+
message: >-
7+
If you use this software, please cite it using the
8+
metadata from this file.
9+
type: software
1110
authors:
12-
- given-names: "Akio"
13-
family-names: "Taniguchi"
14-
affiliation: "Kitami Institute of Technology"
15-
orcid: "https://orcid.org/0000-0002-9695-6183"
16-
- given-names: "Juri"
17-
family-names: "Yamanaka"
18-
affiliation: "Nagoya University"
19-
- given-names: "Shinji"
20-
family-names: "Fujita"
21-
affiliation: "The Institute of Statistical Mathematics"
22-
orcid: "https://orcid.org/0000-0002-6375-7065"
11+
- given-names: Akio
12+
family-names: Taniguchi
13+
affiliation: Kitami Institute of Technology
14+
orcid: 'https://orcid.org/0000-0002-9695-6183'
15+
- given-names: Juri
16+
family-names: Yamanaka
17+
affiliation: Nagoya University
18+
- given-names: Shinji
19+
family-names: Fujita
20+
affiliation: The Institute of Statistical Mathematics
21+
orcid: 'https://orcid.org/0000-0002-6375-7065'
22+
identifiers:
23+
- type: doi
24+
value: 10.5281/zenodo.3384216
25+
repository-code: 'https://github.com/deshima-dev/decode'
26+
url: 'https://deshima-dev.github.io/decode'
27+
abstract: DESHIMA code for data analysis
28+
keywords:
29+
- python
30+
- astronomy
31+
- data-analysis
32+
- deshima
33+
- spectroscopy
34+
- submillimeter
35+
license: MIT
36+
version: 2025.6.0
37+
date-released: '2025-06-23'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DESHIMA code for data analysis
1111
## Installation
1212

1313
```shell
14-
pip install decode==2025.4.2
14+
pip install decode==2025.6.0
1515
```
1616

1717
## Quick look

decode/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@
88
"plot",
99
"qlook",
1010
"select",
11+
"stats",
1112
"utils",
1213
]
13-
__version__ = "2025.4.2"
14+
__version__ = "2025.6.0"
1415

1516

1617
# submodules
@@ -23,4 +24,5 @@
2324
from . import plot
2425
from . import qlook
2526
from . import select
27+
from . import stats
2628
from . import utils

0 commit comments

Comments
 (0)