1
1
# ParallelPlots
2
2
3
- [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://moritz155.github.io/ParallelPlots.jl /stable/ )
4
- [ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://moritz155.github.io/ParallelPlots.jl /dev/ )
3
+ [ ![ Stable] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://moritz155.github.io/ParallelPlots/stable/ )
4
+ [ ![ Dev] ( https://img.shields.io/badge/docs-dev-blue.svg )] ( https://moritz155.github.io/ParallelPlots/dev/ )
5
5
[ ![ Build Status] ( https://github.com/moritz155/ParallelPlots/actions/workflows/CI.yml/badge.svg?branch=main )] ( https://github.com/moritz155/ParallelPlots/actions/workflows/CI.yml?query=branch%3Amain )
6
6
[ ![ Coverage] ( https://codecov.io/gh/moritz155/ParallelPlots/branch/main/graph/badge.svg )] ( https://codecov.io/gh/moritz155/ParallelPlots )
7
7
@@ -10,27 +10,21 @@ This Project is for the TU-Berlin Course "Julia Programming for Machine Learning
10
10
Please make sure, that Julia ` 1.10 ` is used!
11
11
12
12
This Module will return you a nice Scene you can use to display your Data with [ Parallel Coordinates] ( https://en.wikipedia.org/wiki/Parallel_coordinates ) <br >
13
- <img src =" test/parallel_coordinates_plot .png " width =" 300 " />
13
+ <img src =" test/projectile_simulation .png " width =" 300 " />
14
14
15
15
_ This Module was created with PkgTemplates.jl_
16
16
17
17
## Getting Started
18
18
19
- ### Install Dependencies & Use Package
20
- Please refer to this [ Link] ( https://adrianhill.de/julia-ml-course/lectures/E1_Installation.html ) for Installation of Julia
21
-
22
- You need to use the package (1-3) and install the dependencies (4-5)
23
- 1 . Open Julia with ` julia ` in your command prompt
24
- 2 . Open the package manager with ` ] `
25
- 3 . Using our Package
26
- * ` activate /path/to/package ` <br >
27
- or<br >
28
- ` activate . ` when Julia was opened with command prompt already in package path
29
-
30
- * _ you will then see: ` (ParallelPlots) pkg> ` _
31
- 4 . go back to ` julia> ` by pressing ` CMD ` +` C `
32
- 5 . ` Import ParallelPlots ` to download Dependencies and use the Package from Command Line
33
-
19
+ ### Install Dependencies & Use ParallelPlots
20
+ #### Script/REPL
21
+ ` Pkg> add https://github.com/moritz155/ParallelPlots `
22
+ #### Notebook
23
+ ```
24
+ using Pkg
25
+ Pkg.add(url="https://github.com/moritz155/ParallelPlots")
26
+ using ParallelPlots
27
+ ```
34
28
### Usage
35
29
#### Available Parameter
36
30
@@ -92,23 +86,23 @@ parallelplot(df,
92
86
93
87
Please read the [ Docs] ( /docs/build/index.html ) for further Information
94
88
95
- ### Working on this Package / Cheatsheet
96
- 1 . Using the Package
97
- * ` activate /path/to/package ` < br >
98
- or< br >
99
- ` activate . ` when Julia was opened with command prompt already in package path
100
-
101
- * _ you will then see: ` (ParallelPlots) pkg> ` _
89
+ ### Working on ParallelPlots / Cheatsheet
90
+ 1 . Using ParallelPlots
91
+ * Moving to the project folder
92
+ * ` julia --project `
93
+ * You will see ` julia> `
94
+ * To move to the pkg, type in ` ] `
95
+
102
96
103
97
2 . Running commands
104
98
* Adding external Dependencies
105
- - ` add DepName `
106
- * Run Tests to check if Package is still working as intended
107
- - ` test `
99
+ - ` (ParallelPlots) pkg> add ' DepName' `
100
+ * Run Tests to check if ParallelPlots is still working as intended
101
+ - ` (ParallelPlots) pkg> test`
108
102
* Build
109
- - ` build `
103
+ - ` (ParallelPlots) pkg> build`
110
104
* Precompile
111
- - ` precompile `
105
+ - ` (ParallelPlots) pkg> precompile`
112
106
113
107
114
108
#### Create Docs
0 commit comments