forked from bkamins/JuliaForDataAnalysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appA.txt
64 lines (47 loc) · 1.23 KB
/
appA.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Bogumił Kamiński, 2021
# Codes for appendix A
# As opposed to all other files in this repository in the presented codes I
# do not assume that you have activated the project from the repository folder.
# Instead, please follow the instructions contained in the appendix A.
# starting Julia session
julia
# exiting Julia session
exit()
# getting help
- press ?
- write &&
- press Enter
# setting up the project environment for working with examples in the book
# D:\JuliaForDataAnalysis is an example folder
cd("D:/JuliaForDataAnalysis")
isfile("Project.toml")
isfile("Manifest.toml")
# switch to package manager mode by pressing ]
activate .
instantiate
# exit package manager mode by pressing backspace
# activating project environment in a given folder
activate D:/JuliaForDataAnalysis
# setting up a new project folder
# make sure your working directory is an empty folder
pwd()
# press ]
activate .
status
add BenchmarkTools
status
update
remove BenchmarkTools
status
# setting up integration with Python
# make sure you are in package manager mode
add PyCall
# press backspace
using PyCall
PyCall.python
# setting up integration with R
# make sure you are in package manager mode
add RCall
# press backspace
using RCall
RCall.Rhome