You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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},
0 commit comments