diff --git a/HISTORY.md b/HISTORY.md index 5844c145..dfea68ac 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,8 @@ # Snap! (BYOB) History +###2018-11-02 +* new library: Frequency Distribution Analysis, separated from "Bigger Data" + ## v4.2.2.4 ###2018-10-29 * Blocks: fixed #2234 (display all reachable local variables in drop-down menu) diff --git a/libraries/LIBRARIES b/libraries/LIBRARIES index 08afdc6b..fda2b4b4 100644 --- a/libraries/LIBRARIES +++ b/libraries/LIBRARIES @@ -18,6 +18,7 @@ animation_module.xml Animation glide, grow and rotate using easing functions. pixel_module.xml Pixels manipulate costumes pixel-wise. audioComp_module.xml Audio Comp analyze, manipulate and generate sound samples. atomic_HOFs_module.xml "Bigger" Data [EXPERIMENTAL] crunch large lists very fast +frequency_distribution_module.xml Frequency Distribution Analysis [EXPERIMENTAL] analyze data for frequency distribution make-variables.xml create variables in program declare global or sprite-local variables in a script json.xml Deal with JSON data Turn JSON strings into lists with the listify block, then retrieve data out of them by using the value at key block. parallel_module.xml Parallelization Run several scripts in parallel and wait until all are done. diff --git a/libraries/atomic_HOFs_module.xml b/libraries/atomic_HOFs_module.xml index 0dc4e3fc..8fd018c1 100644 --- a/libraries/atomic_HOFs_module.xml +++ b/libraries/atomic_HOFs_module.xml @@ -1 +1 @@ -
returns a frequency analysis of the argument list, represented as a two-column table, where the first column contains the unique values and the second column their occurrences
\ No newline at end of file +
\ No newline at end of file diff --git a/libraries/frequency_distribution_module.xml b/libraries/frequency_distribution_module.xml new file mode 100644 index 00000000..de34c575 --- /dev/null +++ b/libraries/frequency_distribution_module.xml @@ -0,0 +1 @@ +returns a frequency analysis of the argument list, represented as a two-column table, where the first column contains the unique values and the second column their occurrences
\ No newline at end of file