Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chendaniely/rstatsnyc-2023-quarto
NYR Confererence Talk 2023
https://github.com/chendaniely/rstatsnyc-2023-quarto
jupyter quarto talk talks
Last synced: 2 months ago
JSON representation
NYR Confererence Talk 2023
- Host: GitHub
- URL: https://github.com/chendaniely/rstatsnyc-2023-quarto
- Owner: chendaniely
- License: cc0-1.0
- Created: 2023-07-10T04:15:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-13T20:54:41.000Z (over 1 year ago)
- Last Synced: 2024-10-14T13:54:01.349Z (3 months ago)
- Topics: jupyter, quarto, talk, talks
- Language: Jupyter Notebook
- Homepage: https://chendaniely.quarto.pub/rstatsnyc-rmd-jupyter-quarto/
- Size: 11.8 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rstatsnyc-2023-quarto
View slides:
- https://chendaniely.quarto.pub/rstatsnyc-rmd-jupyter-quarto/
- https://speakerdeck.com/chendaniely/moving-to-quarto-from-rmarkdown-and-python-jupyter-notebooks## Setup Repository
Python setup
```shell
python3 -m venv venv
source venv/bin/activatepip intall -r requirements.txt
jupyter kernelspec list # should see current venv as python3 kernel
``````
Available kernels:
python3 /home/dan/git/hub/rstatsnyc-2023-quarto/venv/share/jupyter/kernels/python3```
R Setup
```shell
# install.packages("renv")
renv::restore()
```
You may need to manually install + setup `IRkernel`:```r
install.packages('IRkernel')
IRkernel::installspec()
```