Skip to content

Commit 7583ada

Browse files
author
klaus
committed
Inital commit
0 parents  commit 7583ada

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2934
-0
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata

DESCRIPTION

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Package: sologenerator
2+
Type: Package
3+
Title: Generate monophonic jazz solos for chord sequences
4+
Version: 0.1.0
5+
Author: Klaus Frieler
6+
Maintainer: Klaus Frieler <[email protected]>
7+
Description: Generates jazz solos using Weimar Bebop Alphabet atoms and midlevel units based on the Weimar Jazz Database.
8+
License: MIT
9+
Encoding: UTF-8
10+
LazyData: true
11+
Depends:
12+
R (>= 3.5.0),
13+
Imports:
14+
tidyverse (>= 1.2.1),
15+
ggplot2,
16+
dplyr,
17+
tibble,
18+
purrr,
19+
stringr,
20+
stats
21+
Suggests:
22+
devtools (>= 1.13.6)
23+
RoxygenNote: 7.1.1

LICENSE

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This project is licensed under the terms of the MIT license.
2+
3+
YEAR: 2021
4+
COPYRIGHT HOLDER: Klaus Frieler

NAMESPACE

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(chorus_to_mcsv2)
4+
export(create_from_irb)
5+
export(create_sheet)
6+
export(generate_chorus)
7+
export(make_many_solos)
8+
export(phrase_to_mcsv2)
9+
export(write_mcsv2)
10+
import(dplyr)
11+
import(ggplot2)
12+
import(tibble)
13+
importFrom(stats,chisq.test)
14+
importFrom(stringr,str_locate_all)
15+
importFrom(utils,write.table)

NEWS.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# sologenerator 0.1.0
2+
3+
Initial version.
4+
5+

0 commit comments

Comments
 (0)