- What is Anaconda and how do we use its platform?
- How many open source packages are accompanied with Anaconda?
- What is the home page for Anaconda?
- How do we install Anaconda? After Anaconda is installed, should we install Python separately? What about R?
- What is the size of a full Anaconda installation?
- Why should we care about Miniconda?
- What is Jupyter? How do we launch it without installation?
- What are the advantages and disadvantages of using https://jupyter.org/try?
- Where could a new learner find more useful information about Anaconda?
- Get more information about the Julia programming language.
- How do we write a simple program in Julia via Jupyter?
- How do we write a simple program in R via Jupyter?
- How do we find help for Jupyter?
- What is the conda Cheat Sheet and where can we download it?
- Could we run a simple R program without installing Anaconda?
- Could we run Anaconda without pre-installing it?
- Try the following two lines of Python code:
import numpy as np
print(np.sqrt(2))
- Try the following simple code for R:
x<-1:500
mean(x)
sd(x)
- Try the following code for Julia:
x=1:500
mean(x)
- Try the following code for R:
dd<-Sys.Date()
dd+40