change examples with help mode to avoid editor warnings

This commit is contained in:
Bogumił Kamiński
2022-04-19 14:01:10 +02:00
parent 160247f5ad
commit a7e9ae6163
5 changed files with 26 additions and 10 deletions

64
appA.txt Normal file
View File

@@ -0,0 +1,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