Skip to content

Commit e25614b

Browse files
committed
int
0 parents  commit e25614b

File tree

6 files changed

+269412
-0
lines changed

6 files changed

+269412
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# float-data — Numeric data examples
2+
3+
This repository contains a small set of plain text files with numeric data samples. The files are stored in the `number_files/` directory.
4+
5+
Contents
6+
7+
- `number_files/` — directory containing the following files:
8+
- `number_files/canada.txt` — text extracted from a GeoJSON-style dataset representing geographic data for Canada (contains coordinates and feature attributes).
9+
- `number_files/marine_ik.txt` — numeric data related to a marine inverse-kinematics example (used for testing numeric parsing and algorithms).
10+
- `number_files/mesh.txt` — numeric representation of a 3D mesh (vertices, indices or related mesh data for testing mesh processing).
11+
- `number_files/numbers.txt` — a collection of numeric values ranging from 0 to 1, useful for tes
12+
- `number_files/bitcoin.txt` — daily close prices of bitcoin in USD from 2020-01-01 to 2022-07-31
13+
14+
Quick usage
15+
16+
You can list or inspect the files with these shell commands:
17+
18+
```zsh
19+
ls -l number_files/
20+
head -n 30 number_files/canada.txt
21+
```
22+
23+
## Citation
24+
25+
If you use this dataset in research or a publication, please cite it.
26+
27+
28+
Example BibTeX entry:
29+
30+
```bibtex
31+
@misc{float-data,
32+
title = {float-data: A collection of floating-point numbers},
33+
author = {Jaël Champagne Gareau and Daniel Lemire},
34+
year = {2025},
35+
howpublished = {\url{https://github.com/fastfloat/float-data}}
36+
}
37+
```

0 commit comments

Comments
 (0)