Skip to content

Commit 13ac384

Browse files
committed
Release 1.0.2
1 parent 388657e commit 13ac384

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/install.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# demo-data-gen kdb-x installation
1+
# datagen kdb-x installation
22

3-
`demo-data-gen` is written as a module, under kdb-x's module framework. Though modules can be loaded from anywhere if added to your `$QPATH`, we recommend installing to the `$HOME/.kx/mod/kx` folder. This is to avoid name clashes with other user defined modules, as well as providing a location for other KX modules to cross reference each other.
3+
`datagen` is written as a module, under kdb-x's module framework. Though modules can be loaded from anywhere if added to your `$QPATH`, we recommend installing to the `$HOME/.kx/mod/kx` folder. This is to avoid name clashes with other user defined modules, as well as providing a location for other KX modules to cross reference each other.
44

55
```bash
66
export QPATH="$QPATH:$HOME/.kx/mod"
77
mkdir -p ~/.kx/mod/kx/
8-
cp printf.q ~/.kx/mod/kx/
8+
cp -r datagen ~/.kx/mod/kx/
99
```
1010

11-
Now from anywhere you can import the `demo-data-gen` library.
11+
Now from anywhere you can import the `datagen` library.
1212

1313
```q
14-
q)([getInMemoryTables; buildPersistedDB]): use `kx.demo-data-gen.capmkts
14+
q)([getInMemoryTables; buildPersistedDB]): use `kx.datagen.capmkts
1515
q)(trade; quote; nbbo; master; exnames): getInMemoryTables[]
1616
q)asc select sum size by exch: exnames ex from trade where date=last date
1717
exch | size

docs/references/capmkts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This module is designed to generate synthetic capital market data, including `tr
77
The module provides two primary functions:
88

99
```q
10-
([getInMemoryTables; buildPersistedDB]): use `$"kx.demo-data-gen.capmkts"
10+
([getInMemoryTables; buildPersistedDB]): use `kx.datagen.capmkts
1111
```
1212

1313
To generate in-memory tables `trade`, `quote`, and `nbbo` along with metadata tables `master` and dictionary `exnames`, use the `getInMemoryTables` function:

docs/references/devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Incident records, stored in the `incidents` table, are generated whenever a user
1313
The module provides a single function that returns in-memory tables.
1414

1515
```q
16-
([getInMemoryTables]): use `$"kx.demodatagen.devops"
16+
([getInMemoryTables]): use `kx.datagen.devops
1717
```
1818

1919
The CPU metrics are collected from midnight until the current query time (`.z.T`).

0 commit comments

Comments
 (0)